We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa7fc1f commit d9b2207Copy full SHA for d9b2207
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