jsoncpp: Include C headers since we use APIs without std::

This commit is contained in:
Brad King 2015-01-15 11:16:03 -05:00
parent 06f41e986c
commit 7eba04fda1
2 changed files with 5 additions and 5 deletions

View File

@ -10,9 +10,9 @@
#include "json_tool.h" #include "json_tool.h"
#endif // if !defined(JSON_IS_AMALGAMATION) #endif // if !defined(JSON_IS_AMALGAMATION)
#include <utility> #include <utility>
#include <cstdio> #include <stdio.h>
#include <cassert> #include <assert.h>
#include <cstring> #include <string.h>
#include <istream> #include <istream>
#if defined(_MSC_VER) && _MSC_VER < 1500 // VC++ 8.0 and below #if defined(_MSC_VER) && _MSC_VER < 1500 // VC++ 8.0 and below

View File

@ -14,8 +14,8 @@
#include <math.h> #include <math.h>
#include <sstream> #include <sstream>
#include <utility> #include <utility>
#include <cstring> #include <string.h>
#include <cassert> #include <assert.h>
#ifdef JSON_USE_CPPTL #ifdef JSON_USE_CPPTL
#include <cpptl/conststring.h> #include <cpptl/conststring.h>
#endif #endif