Skip to content

Commit

Permalink
Revert "Merge pull request #6 from kpp/pedantic_warnings"
Browse files Browse the repository at this point in the history
This reverts commit 746bba1, reversing
changes made to 714ba5c.
  • Loading branch information
ytakano committed Apr 22, 2016
1 parent 746bba1 commit 4d1ea9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ before_script:
- cmake .. -DBUILD_TESTS=On -DCMAKE_BUILD_TYPE=${BUILD_TYPE}

script:
- cmake --build . -- all --keep-going VERBOSE=1
- cmake --build . -- all --keep-going
- cmake --build . --target check
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ project(radix-tree)
set (CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
install(FILES radix_tree.hpp radix_tree_it.hpp radix_tree_node.hpp DESTINATION include/radix_tree)

set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Werror -pedantic")
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra")
option(BUILD_TESTS "Should we build tests?" OFF)

if (BUILD_TESTS)
Expand Down

0 comments on commit 4d1ea9c

Please sign in to comment.