Skip to content

Commit 3ad6dcf

Browse files
authored
Fix extra space mistake
1 parent ad09629 commit 3ad6dcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib_json/json_reader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ static size_t const stackLimit_g = JSONCPP_DEPRECATED_STACK_LIMIT; // see readVa
5555
namespace Json {
5656

5757
#if __cplusplus >= 201103L || (defined(_CPPLIB_VER) && _CPPLIB_VER >= 520)
58-
using CharReaderPtr = std::unique_ptr<CharReader>;
58+
using CharReaderPtr = std::unique_ptr<CharReader>;
5959
#else
6060
using CharReaderPtr = std::auto_ptr<CharReader>;
6161
#endif

0 commit comments

Comments
 (0)