//____________________________________________________________________________//
+// adjustment to boost 1.65.1 and up
+#if BOOST_VERSION >= 106501
+void
+colour_log_formatter::log_entry_context(
+ std::ostream& os,
+ boost::unit_test::log_level l,
+ boost::unit_test::const_string value)
+{
+ (void)l;
+ os <<< "\n " << value;
+}
+void
+colour_log_formatter::entry_context_finish(
+ std::ostream& os,
+ boost::unit_test::log_level l)
+{
+ (void)l;
+ os.flush();
+}
+#endif
+//____________________________________________________________________________//
+
} // namespace cryptsvc
//____________________________________________________________________________//
boost::unit_test::const_string value);
void entry_context_finish(std::ostream &);
+#if BOOST_VERSION >= 106501
+ void log_entry_context(
+ std::ostream &,
+ boost::unit_test::log_level,
+ boost::unit_test::const_string);
+ void entry_context_finish(
+ std::ostream &,
+ boost::unit_test::log_level);
+#endif
+
+
private:
bool m_isTestCaseFailed;
};