diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-09-29 09:12:31 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-09-29 09:12:31 -0700 |
commit | 2e72dc12f77bb395df6a05a367c2a9ec7b9accc1 (patch) | |
tree | 3540d2758848058ee8fd070e333abd98299306d1 | |
parent | bb58e1797e8a813891d2ba8ceabcfb518c6f8050 (diff) | |
download | mu-2e72dc12f77bb395df6a05a367c2a9ec7b9accc1.tar.gz |
2215
-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; |