move definition of the INPUT_FOLDER variable from header to implementation file

This commit is contained in:
Axel Kohlmeyer
2020-05-20 15:22:43 -04:00
parent 2536076ce9
commit 917b7dd4fa
2 changed files with 6 additions and 6 deletions

View File

@ -20,6 +20,7 @@
extern TestConfig test_config;
extern bool print_stats;
extern bool verbose;
extern std::string INPUT_FOLDER;
#define EXPECT_FP_LE_WITH_EPS(val1,val2,eps) \
do { \
@ -32,12 +33,6 @@ extern bool verbose;
#endif
#define STRINGIFY(val) XSTR(val)
#define XSTR(val) #val
static const std::string INPUT_FOLDER = STRINGIFY(TEST_INPUT_FOLDER);
#undef STRINGIFY
#undef XSTR
#if defined _WIN32
static const char PATH_SEP = '\\';
#else