Skip to content

Commit f91c80a

Browse files
committed
Add include guards to RBConfig.h
To avoid double inclusion.
1 parent ae315d7 commit f91c80a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

include/rootbench/RBConfig.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
///\file This file contains utility functions which simplify running benchmarks.
2+
#ifndef RB_CONFIG_H
3+
#define RB_CONFIG_H
24

35
#include <stdlib.h>
46

@@ -31,3 +33,5 @@ namespace RB {
3133
return RB::kDatasetDirectory;
3234
}
3335
}
36+
37+
#endif

0 commit comments

Comments
 (0)