We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 38a4b34 + d9b2207 commit 1b21872Copy full SHA for 1b21872
src/drivers/BoostDriver.cpp
@@ -65,8 +65,13 @@ class CukeBoostLogInterceptor : public ::boost::unit_test::unit_test_log_formatt
65
void log_entry_finish( std::ostream&) {};
66
67
void entry_context_start( std::ostream&, log_level /*l*/) {}
68
+#if BOOST_VERSION >= 106500
69
+ void log_entry_context( std::ostream&, log_level /*l*/, const_string /*value*/) {}
70
+ void entry_context_finish( std::ostream&, log_level /*l*/ ) {}
71
+#else
72
void log_entry_context( std::ostream&, const_string /*value*/) {}
73
void entry_context_finish( std::ostream& ) {}
74
+#endif
75
76
private:
77
std::stringstream description;
0 commit comments