Skip to content

Commit b999616

Browse files
committed
fix warning
1 parent d4a49cf commit b999616

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jsontestrunner/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ static JSONCPP_STRING readInputTestFile(const char* path) {
5858
return JSONCPP_STRING("");
5959
fseek(file, 0, SEEK_END);
6060
long const size = ftell(file);
61-
unsigned long const usize = static_cast<unsigned long const>(size);
61+
unsigned long const usize = static_cast<unsigned long>(size);
6262
fseek(file, 0, SEEK_SET);
6363
JSONCPP_STRING text;
6464
char* buffer = new char[size + 1];

0 commit comments

Comments
 (0)