Change-Id: I51af6f76f114b8b997f1e1d1bdc5c452ac236533
{
(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
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;
};