diff options
author | Paweł Bylica <chfast@gmail.com> | 2018-07-25 15:17:53 +0800 |
---|---|---|
committer | Paweł Bylica <chfast@gmail.com> | 2018-07-25 15:17:53 +0800 |
commit | f31989c02220cb8367da1f361f964d91962b4ecd (patch) | |
tree | 3ed2f2430494956b9ea5254b6aad05fc0a177d08 | |
parent | ae0959ae125ac2ae7084041a87c0736a8e7df6c6 (diff) | |
download | dexon-solidity-f31989c02220cb8367da1f361f964d91962b4ecd.tar.gz dexon-solidity-f31989c02220cb8367da1f361f964d91962b4ecd.tar.zst dexon-solidity-f31989c02220cb8367da1f361f964d91962b4ecd.zip |
Do not include single-header boost_unit_test
Do not mix 2 different usage variants of boost_unit_test. If you link with static libs do not include the single-header variant.
See https://www.boost.org/doc/libs/1_67_0/libs/test/doc/html/boost_test/usage_variants.html#boost_test.usage_variants.single_header
-rw-r--r-- | test/boostTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/boostTest.cpp b/test/boostTest.cpp index 145be6e4..6c68100c 100644 --- a/test/boostTest.cpp +++ b/test/boostTest.cpp @@ -28,7 +28,7 @@ #pragma warning(push) #pragma warning(disable:4535) // calling _set_se_translator requires /EHa #endif -#include <boost/test/included/unit_test.hpp> +#include <boost/test/unit_test.hpp> #if defined(_MSC_VER) #pragma warning(pop) #endif |