We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5abc090 commit 7e921b0Copy full SHA for 7e921b0
src/lib_json/json_reader.cpp
@@ -23,13 +23,6 @@
23
#include <utility>
24
25
#include <cstdio>
26
-#if __cplusplus >= 201103L
27
-
28
-#if !defined(sscanf)
29
-#define sscanf std::sscanf
30
-#endif
31
32
-#endif //__cplusplus
33
34
#if defined(_MSC_VER)
35
#if !defined(_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES)
@@ -53,11 +46,7 @@ static size_t const stackLimit_g =
53
46
54
47
namespace Json {
55
48
56
-#if __cplusplus >= 201103L || (defined(_CPPLIB_VER) && _CPPLIB_VER >= 520)
57
49
using CharReaderPtr = std::unique_ptr<CharReader>;
58
-#else
59
-using CharReaderPtr = std::auto_ptr<CharReader>;
60
61
50
62
51
// Implementation of class Features
63
52
// ////////////////////////////////
0 commit comments