File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ export const cppCommander = new Commanders({
70
70
'cmake ..' ,
71
71
'make' ,
72
72
'mkdir -p out/include' ,
73
- 'cp ../src/*.h out/include' ,
73
+ 'cp ../include/* ../ src/*.h out/include' ,
74
74
] ,
75
75
} ) ;
76
76
Original file line number Diff line number Diff line change 1
1
#include < string>
2
2
#include < iostream>
3
- #include " json.hpp"
3
+ #include < json.hpp>
4
4
#include " Tracer.h"
5
5
6
6
using namespace std ;
Original file line number Diff line number Diff line change 2
2
#define CPP_TRACER_H
3
3
4
4
#include < string>
5
- #include " json.hpp"
5
+ #include < json.hpp>
6
6
7
7
class Tracer {
8
8
protected:
@@ -13,7 +13,7 @@ class Tracer {
13
13
static int tracerCount;
14
14
static json traces;
15
15
16
- static const int maxTraces = 1000000 ;
16
+ static const int maxTraces = 1000000 ; // TODO: load from environment variables
17
17
static const int maxTracers = 100 ;
18
18
19
19
static string addTracer (string className, string title);
You can’t perform that action at this time.
0 commit comments