diff options
Diffstat (limited to '003trace.cc')
-rw-r--r-- | 003trace.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/003trace.cc b/003trace.cc index c5e651c9..f2045fd6 100644 --- a/003trace.cc +++ b/003trace.cc @@ -205,7 +205,7 @@ START_TRACING_UNTIL_END_OF_SCOPE #define CHECK_TRACE_CONTENTS(...) check_trace_contents(__FUNCTION__, __FILE__, __LINE__, __VA_ARGS__) :(before "End Tracing") -bool check_trace_contents(string FUNCTION, string FILE, int LINE, string expected) { // missing layer == anywhere +bool check_trace_contents(string FUNCTION, string FILE, int LINE, string expected) { if (!Trace_stream) return false; vector<string> expected_lines = split(expected, ""); long long int curr_expected_line = 0; |