summaryrefslogtreecommitdiff
path: root/Utilities/cmjsoncpp
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-01-15 11:12:07 -0500
committerBrad King <brad.king@kitware.com>2015-01-15 11:36:49 -0500
commit84d5674d4e0cfe30f28db2893ad00937deece57c (patch)
tree1cc4279b61b7f320e8cd9b21ddab3ff8ab3ed2f4 /Utilities/cmjsoncpp
parenta263d519fffab082fc31f8e3f454726e3fbd8363 (diff)
downloadcmake-84d5674d4e0cfe30f28db2893ad00937deece57c.tar.gz
jsoncpp: Include "config.h" before system headers
Diffstat (limited to 'Utilities/cmjsoncpp')
-rw-r--r--Utilities/cmjsoncpp/include/json/assertions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Utilities/cmjsoncpp/include/json/assertions.h b/Utilities/cmjsoncpp/include/json/assertions.h
index 5ef7e7bb7d..37a3ff553d 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) \