Change-Id: I4f541900316f3419827fa3e3f66bcdf81e40f44e
output.flush();
}
+#if BOOST_VERSION >= 106500
+void
+colour_log_formatter::log_entry_context(std::ostream& os, log_level l, const_string value)
+{
+ (void)l;
+ os << "\n " << value;
+}
+void
+colour_log_formatter::entry_context_finish(std::ostream& os, log_level l)
+{
+ (void)l;
+ os.flush();
+}
+#endif
+
//____________________________________________________________________________//
} // namespace Test
} // namespace Wae
void log_entry_context(std::ostream& os,
boost::unit_test::const_string value);
void entry_context_finish(std::ostream& os);
+#if BOOST_VERSION >= 106500
+ 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;