diff options
author | Peter Powell <petpow@saberuk.com> | 2015-07-07 16:07:28 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2015-12-31 02:42:16 +0000 |
commit | 8def0cd5fcd952e62374260adab0c3fdca02845b (patch) | |
tree | 0abcdc77e5c363515f9d4b109f2fd9119fc7754d /CMakeLists.txt | |
parent | 39980be37f8ddb7207a4873c52c20c028241c047 (diff) |
Remove a leftover from when Anope was written in C.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a6245dd48..6bc96f62c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -88,7 +88,7 @@ else() set(CXXFLAGS "${CXXFLAGS} -Wall -Wshadow") # If on a *nix system, also set the compile flags to remove GNU extensions (favor ISO C++) as well as reject non-ISO C++ code, also remove all leading underscores in exported symbols (only on GNU compiler) if(UNIX) - set(CXXFLAGS "${CXXFLAGS} -ansi -pedantic ${CMAKE_CXX_FLAGS}") + set(CXXFLAGS "${CXXFLAGS} -pedantic ${CMAKE_CXX_FLAGS}") if(${CMAKE_CXX_COMPILER_ID} STREQUAL "AppleClang") set(CXXFLAGS "${CXXFLAGS} -stdlib=libc++") set(LDFLAGS "${LDFLAGS} -stdlib=libc++") |