1 | #ifndef BANDIT_BANDIT_H |
---|---|
2 | #define BANDIT_BANDIT_H |
3 | |
4 | // Visual Studio versions before 2015 do not support the noexcept keyword |
5 | #ifdef _MSC_VER |
6 | # if (_MSC_VER < 1900) |
7 | # define _ALLOW_KEYWORD_MACROS |
8 | # define noexcept |
9 | # endif |
10 | #endif |
11 | |
12 | #include <bandit/grammar.h> |
13 | #include <bandit/runner.h> |
14 | |
15 | #endif |
16 |