From 48153630c58b311d15771eefa046f6c68944a4a0 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 28 Aug 2016 14:22:22 -0700 Subject: 3267 --- 003trace.cc | 6 ------ 1 file changed, 6 deletions(-) (limited to '003trace.cc') 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 split(string s, string delim) { vector result; size_t begin=0, end=s.find(delim); -- cgit 1.4.1-2-gfad0 '>Profanity fork with TTY improvementsdanisanti <danisanti@tilde.institute>
about summary refs log tree commit diff stats
blob: fa7e7f185d79bdd7fdc71d0020b422093b3bc356 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79