We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ff58aa commit b60aac6Copy full SHA for b60aac6
cmake/modules/RootMacros.cmake
@@ -2834,6 +2834,7 @@ endmacro(ROOTTEST_SETUP_EXECTEST)
2834
# function ROOTTEST_ADD_TEST(testname
2835
# MACRO|EXEC macro_or_command
2836
# [MACROARG args1 arg2 ...]
2837
+# [ROOTEXE_OPTS opt1 opt2 ...]
2838
# [INPUT infile]
2839
# [ENABLE_IF root-feature]
2840
# [DISABLE_IF root-feature]
roottest/cling/stl/map/testing.h
@@ -3,13 +3,14 @@
3
#include <map>
4
5
typedef std::map<int, int> nmap;
6
-typedef std::map<int, nmap > runnmap;
+typedef std::map<int, nmap> runnmap;
7
8
class test {
9
- public:
10
- test() {};
11
- ~test() {};
12
- private:
13
- runnmap _lbn;
+public:
+ test(){};
+ ~test(){};
+
+private:
14
+ runnmap _lbn;
15
};
16
0 commit comments