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"
#endif // if !defined(JSON_IS_AMALGAMATION)
#include <utility>
#include <cstdio>
#include <cassert>
#include <cstring>
#include <stdio.h>
#include <assert.h>
#include <string.h>
#include <istream>
#if defined(_MSC_VER) && _MSC_VER < 1500 // VC++ 8.0 and below

View File

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