mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-10-15 07:14:45 +02:00
COMP: Prefer the C++ headers over the C99 headers
Using the C++11 headers keeps the library cleaner and more rigorously scoped use of namespaces.
This commit is contained in:

committed by
Christopher Dunn

parent
5c8e539af4
commit
e50bfefef1
@@ -5,8 +5,8 @@
|
||||
|
||||
#ifndef JSON_CONFIG_H_INCLUDED
|
||||
#define JSON_CONFIG_H_INCLUDED
|
||||
#include <stddef.h>
|
||||
#include <stdint.h> //typedef int64_t, uint64_t
|
||||
#include <cstddef>
|
||||
#include <cstdint> //typedef int64_t, uint64_t
|
||||
#include <string> //typedef String
|
||||
|
||||
/// If defined, indicates that json library is embedded in CppTL library.
|
||||
|
Reference in New Issue
Block a user