jsoncpp: Include "config.h" before system headers

This commit is contained in:
Brad King 2015-01-15 11:12:07 -05:00
parent a263d519ff
commit 84d5674d4e
1 changed files with 2 additions and 2 deletions

View File

@ -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) \