This commit is contained in:
Kartik K. Agaram 2015-09-29 09:12:31 -07:00
parent bb58e1797e
commit 2e72dc12f7
1 changed files with 1 additions and 1 deletions

View File

@ -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;