diff options
author | Brad King <brad.king@kitware.com> | 2015-01-15 16:12:07 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-01-15 16:36:49 (GMT) |
commit | 84d5674d4e0cfe30f28db2893ad00937deece57c (patch) | |
tree | 1cc4279b61b7f320e8cd9b21ddab3ff8ab3ed2f4 /Utilities | |
parent | a263d519fffab082fc31f8e3f454726e3fbd8363 (diff) | |
download | CMake-84d5674d4e0cfe30f28db2893ad00937deece57c.zip CMake-84d5674d4e0cfe30f28db2893ad00937deece57c.tar.gz CMake-84d5674d4e0cfe30f28db2893ad00937deece57c.tar.bz2 |
jsoncpp: Include "config.h" before system headers
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/cmjsoncpp/include/json/assertions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Utilities/cmjsoncpp/include/json/assertions.h b/Utilities/cmjsoncpp/include/json/assertions.h index 5ef7e7b..37a3ff5 100644 --- a/Utilities/cmjsoncpp/include/json/assertions.h +++ b/Utilities/cmjsoncpp/include/json/assertions.h @@ -6,12 +6,12 @@ #ifndef CPPTL_JSON_ASSERTIONS_H_INCLUDED #define CPPTL_JSON_ASSERTIONS_H_INCLUDED -#include <stdlib.h> - #if !defined(JSON_IS_AMALGAMATION) #include "config.h" #endif // if !defined(JSON_IS_AMALGAMATION) +#include <stdlib.h> + #if JSON_USE_EXCEPTION #include <stdexcept> #define JSON_ASSERT(condition) \ |