Adjust build to boost 1.65.1 31/181931/3
authorTomasz Swierczek <t.swierczek@samsung.com>
Tue, 19 Jun 2018 05:02:21 +0000 (07:02 +0200)
committerTomasz Swierczek <t.swierczek@samsung.com>
Wed, 20 Jun 2018 09:10:07 +0000 (11:10 +0200)
Change-Id: I51af6f76f114b8b997f1e1d1bdc5c452ac236533

test/colour_log_formatter.cpp
test/colour_log_formatter.h

index eefaa6c6c8e227e41d39c144eb04b53a80759217..8d142b8cd8514a5c77e63a7eb212d1ab59e9691d 100644 (file)
@@ -321,6 +321,21 @@ colour_log_formatter::entry_context_finish(std::ostream& os)
 {
     (void)os;
 }
+#if BOOST_VERSION >= 106501
+void
+colour_log_formatter::log_entry_context(std::ostream& os, log_level l, const_string value)
+{
+    (void)os;
+    (void)l;
+    (void)value;
+}
+void
+colour_log_formatter::entry_context_finish(std::ostream& os, log_level l)
+{
+    (void)os;
+    (void)l;
+}
+#endif
 //____________________________________________________________________________//
 
 } // namespace SecurityManager
index 5a38e0aa50b4ac309989fbbff8378849a8ae5b9b..65ab721d2b344b27c65895fed60ec92e0583995e 100644 (file)
@@ -44,6 +44,11 @@ public:
     void log_entry_context(std::ostream& os, boost::unit_test::const_string value);
     void entry_context_finish(std::ostream& os);
 
+#if BOOST_VERSION >= 106501
+    void log_entry_context(std::ostream& os, boost::unit_test::log_level l, boost::unit_test::const_string value);
+    void entry_context_finish(std::ostream& os, boost::unit_test::log_level l);
+#endif
+
 private:
     bool m_isTestCaseFailed;
 };