Commit 52d08ab8 authored by Geoff Simmons's avatar Geoff Simmons

Turn off some warnings that fail clang -Werror against activemq-cpp.

parent 24c801c5
...@@ -135,7 +135,8 @@ DEVELOPER_CFLAGS=" \ ...@@ -135,7 +135,8 @@ DEVELOPER_CFLAGS=" \
# Added for compiling C++ for ActiveMQ. # Added for compiling C++ for ActiveMQ.
# -Wstrict-prototypes, -Wmissing-prototypes & -Wnested-externs invalid for C++ # -Wstrict-prototypes, -Wmissing-prototypes & -Wnested-externs invalid for C++
# activemq-cpp fails on -Wshadow and -Wcast-qual # activemq-cpp fails on: -Wshadow, -Wcast-qual,-Woverloaded-virtual and
# -Wunused-parameter
DEVELOPER_CXXFLAGS=" \ DEVELOPER_CXXFLAGS=" \
-Werror \ -Werror \
-Wall \ -Wall \
...@@ -145,11 +146,12 @@ DEVELOPER_CXXFLAGS=" \ ...@@ -145,11 +146,12 @@ DEVELOPER_CXXFLAGS=" \
-Wreturn-type \ -Wreturn-type \
-Wwrite-strings \ -Wwrite-strings \
-Wswitch \ -Wswitch \
-Wunused-parameter \
-Wcast-align \ -Wcast-align \
-Wchar-subscripts \ -Wchar-subscripts \
-Wextra \ -Wextra \
-Wno-sign-compare \ -Wno-sign-compare \
-Wno-overloaded-virtual \
-Wno-unused-parameter \
" "
# These are not compliable yet # These are not compliable yet
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment