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 d4a49cf commit b999616Copy full SHA for b999616
src/jsontestrunner/main.cpp
@@ -58,7 +58,7 @@ static JSONCPP_STRING readInputTestFile(const char* path) {
58
return JSONCPP_STRING("");
59
fseek(file, 0, SEEK_END);
60
long const size = ftell(file);
61
- unsigned long const usize = static_cast<unsigned long const>(size);
+ unsigned long const usize = static_cast<unsigned long>(size);
62
fseek(file, 0, SEEK_SET);
63
JSONCPP_STRING text;
64
char* buffer = new char[size + 1];
0 commit comments