Clean-up code to satisfy GCC's pedantic mode requirements. Add fix for Clang not working with GCC 5 C++ library (https://llvm.org/bugs/show_bug.cgi?id=23529)

This commit is contained in:
Marko Zivanovic
2015-11-25 15:22:13 +01:00
parent d1759caf1c
commit aecbc92030
8 changed files with 33 additions and 16 deletions
+3 -3
View File
@@ -9,19 +9,19 @@ include_directories(
${Boost_INCLUDE_DIRS}
)
add_executable(semver200_parser_tests semver200_parser_tests.cpp)
add_executable(semver200_parser_tests semver200_parser_tests.cpp clang_fixes.cpp)
target_link_libraries(semver200_parser_tests
${Boost_UNIT_TEST_FRAMEWORK_LIBRARY}
semver
)
add_executable(semver200_comparator_tests semver200_comparator_tests.cpp)
add_executable(semver200_comparator_tests semver200_comparator_tests.cpp clang_fixes.cpp)
target_link_libraries(semver200_comparator_tests
${Boost_UNIT_TEST_FRAMEWORK_LIBRARY}
semver
)
add_executable(semver200_version_tests semver200_version_tests.cpp)
add_executable(semver200_version_tests semver200_version_tests.cpp clang_fixes.cpp)
target_link_libraries(semver200_version_tests
${Boost_UNIT_TEST_FRAMEWORK_LIBRARY}
semver