From: Sangwan Kwon Date: Tue, 10 Dec 2019 00:47:24 +0000 (+0900) Subject: Bump boost version to 1.71.0 X-Git-Tag: accepted/tizen/unified/20191210.141131^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F62%2F219762%2F1;p=platform%2Fupstream%2Fcsr-framework.git Bump boost version to 1.71.0 Change-Id: I794ed2db4985d25a20a07749de69b9e3db1d851b Signed-off-by: Sangwan Kwon --- 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 &,