about summary refs log tree commit diff stats
path: root/003trace.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-28 14:22:22 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-28 14:22:22 -0700
commit48153630c58b311d15771eefa046f6c68944a4a0 (patch)
tree1e7947d0bcf0318d0a1cdad6fc67daaea67bb88b /003trace.cc
parentcd9bb850caeca88747a25436fc65c67c6d5cd89a (diff)
downloadmu-48153630c58b311d15771eefa046f6c68944a4a0.tar.gz
3267
Diffstat (limited to '003trace.cc')
-rw-r--r--003trace.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/003trace.cc b/003trace.cc
index bd6892a2..7f543496 100644
--- a/003trace.cc
+++ b/003trace.cc
@@ -149,8 +149,6 @@ struct trace_stream {
   }
 };
 
-
-
 trace_stream* Trace_stream = NULL;
 int Trace_errors = 0;  // used only when Trace_stream is NULL
 
@@ -259,8 +257,6 @@ bool line_exists_anywhere(const string& label, const string& contents) {
   return false;
 }
 
-
-
 int trace_count(string label) {
   return trace_count(label, "");
 }
@@ -320,8 +316,6 @@ bool trace_doesnt_contain(string expected) {
 
 #define CHECK_TRACE_DOESNT_CONTAIN(...)  CHECK(trace_doesnt_contain(__VA_ARGS__))
 
-
-
 vector<string> split(string s, string delim) {
   vector<string> result;
   size_t begin=0, end=s.find(delim);