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({
7070 'cmake ..' ,
7171 'make' ,
7272 'mkdir -p out/include' ,
73- 'cp ../src/*.h out/include' ,
73+ 'cp ../include/* ../ src/*.h out/include' ,
7474 ] ,
7575} ) ;
7676
Original file line number Diff line number Diff line change 11#include < string>
22#include < iostream>
3- #include " json.hpp"
3+ #include < json.hpp>
44#include " Tracer.h"
55
66using namespace std ;
Original file line number Diff line number Diff line change 22#define CPP_TRACER_H
33
44#include < string>
5- #include " json.hpp"
5+ #include < json.hpp>
66
77class Tracer {
88protected:
@@ -13,7 +13,7 @@ class Tracer {
1313 static int tracerCount;
1414 static json traces;
1515
16- static const int maxTraces = 1000000 ;
16+ static const int maxTraces = 1000000 ; // TODO: load from environment variables
1717 static const int maxTracers = 100 ;
1818
1919 static string addTracer (string className, string title);
You can’t perform that action at this time.
0 commit comments