From 413a93f897a2d24eb607de891207b92f6e9dbdcf Mon Sep 17 00:00:00 2001 From: Sangwan Kwon Date: Tue, 10 Dec 2019 09:47:24 +0900 Subject: [PATCH] Bump boost version to 1.71.0 Change-Id: I794ed2db4985d25a20a07749de69b9e3db1d851b Signed-off-by: Sangwan Kwon --- test/colour_log_formatter.cpp | 8 ++++++++ test/colour_log_formatter.h | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/test/colour_log_formatter.cpp b/test/colour_log_formatter.cpp index 994dcbc..e53b431 100644 --- a/test/colour_log_formatter.cpp +++ b/test/colour_log_formatter.cpp @@ -120,6 +120,14 @@ colour_log_formatter::log_build_info(std::ostream &output) << BOOST_VERSION % 100 << std::endl; } +#if BOOST_VERSION >= 107100 +void +colour_log_formatter::log_build_info(std::ostream &out, bool) +{ + log_build_info(out); +} +#endif + //____________________________________________________________________________// void diff --git a/test/colour_log_formatter.h b/test/colour_log_formatter.h index 6f68556..43f2fd3 100644 --- a/test/colour_log_formatter.h +++ b/test/colour_log_formatter.h @@ -27,6 +27,10 @@ public: void log_finish(std::ostream &); void log_build_info(std::ostream &); +#if BOOST_VERSION >= 107100 + void log_build_info(std::ostream &, bool) override; +#endif + void test_unit_start(std::ostream &, boost::unit_test::test_unit const &tu); void test_unit_finish(std::ostream &, -- 2.7.4