File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -60,8 +60,8 @@ class CukeBoostLogInterceptor : public ::boost::unit_test::unit_test_log_formatt
60
60
void log_exception_finish ( std::ostream& ) {};
61
61
62
62
void log_entry_start ( std::ostream&, log_entry_data const &, log_entry_types /* let*/ ) {};
63
- void log_entry_value ( std::ostream&, const_string /* value*/ );
64
- void log_entry_value ( std::ostream&, lazy_ostream const & /* value*/ ) {} ;
63
+ void log_entry_value ( std::ostream&, const_string value);
64
+ void log_entry_value ( std::ostream&, lazy_ostream const & value) ;
65
65
void log_entry_finish ( std::ostream&) {};
66
66
67
67
void entry_context_start ( std::ostream&, log_level /* l*/ ) {}
@@ -79,9 +79,13 @@ void CukeBoostLogInterceptor::reset() {
79
79
/*
80
80
* Threshold level set to log_all_errors, so we should be fine logging everything
81
81
*/
82
- void CukeBoostLogInterceptor::log_entry_value ( std::ostream&, const_string value) {
82
+ void CukeBoostLogInterceptor::log_entry_value (std::ostream&, const_string value) {
83
83
description << value;
84
- };
84
+ }
85
+
86
+ void CukeBoostLogInterceptor::log_entry_value (std::ostream&, lazy_ostream const & value){
87
+ description << value;
88
+ }
85
89
86
90
const InvokeResult CukeBoostLogInterceptor::getResult () const {
87
91
std::string d = description.str ();
You can’t perform that action at this time.
0 commit comments