File tree 7 files changed +9
-9
lines changed
7 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 7
7
#define CPPTL_JSON_ASSERTIONS_H_INCLUDED
8
8
9
9
#include <sstream>
10
- #include <stdlib.h >
10
+ #include <cstdlib >
11
11
12
12
#if !defined(JSON_IS_AMALGAMATION )
13
13
#include "config.h"
Original file line number Diff line number Diff line change 5
5
6
6
#ifndef JSON_CONFIG_H_INCLUDED
7
7
#define JSON_CONFIG_H_INCLUDED
8
- #include < stddef.h >
9
- #include < stdint.h > // typedef int64_t, uint64_t
8
+ #include < cstddef >
9
+ #include < cstdint > // typedef int64_t, uint64_t
10
10
#include < string> // typedef String
11
11
12
12
// / If defined, indicates that json library is embedded in CppTL library.
Original file line number Diff line number Diff line change 16
16
#include < algorithm> // sort
17
17
#include < json/json.h>
18
18
#include < sstream>
19
- #include < stdio.h >
19
+ #include < cstdio >
20
20
21
21
struct Options {
22
22
JSONCPP_STRING path;
Original file line number Diff line number Diff line change 10
10
#endif // if !defined(JSON_IS_AMALGAMATION)
11
11
#include < cassert>
12
12
#include < cstring>
13
- #include < math.h >
13
+ #include < cmath >
14
14
#include < sstream>
15
15
#include < utility>
16
16
#ifdef JSON_USE_CPPTL
Original file line number Diff line number Diff line change 28
28
#endif
29
29
30
30
#else
31
- #include < math.h >
32
- #include < stdio.h >
31
+ #include < cmath >
32
+ #include < cstdio >
33
33
34
34
#if defined(_MSC_VER)
35
35
#if !defined(isnan)
Original file line number Diff line number Diff line change 5
5
6
6
#define _CRT_SECURE_NO_WARNINGS 1 // Prevents deprecation warning with MSVC
7
7
#include " jsontest.h"
8
- #include < stdio.h >
8
+ #include < cstdio >
9
9
#include < string>
10
10
11
11
#if defined(_MSC_VER)
Original file line number Diff line number Diff line change 11
11
#include < json/value.h>
12
12
#include < json/writer.h>
13
13
#include < sstream>
14
- #include < stdio.h >
14
+ #include < cstdio >
15
15
#include < string>
16
16
17
17
// //////////////////////////////////////////////////////////////////
You can’t perform that action at this time.
0 commit comments