mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-04-28 02:33:28 +02:00
fix warning
This commit is contained in:
parent
d4a49cf511
commit
b999616df8
@ -58,7 +58,7 @@ static JSONCPP_STRING readInputTestFile(const char* path) {
|
||||
return JSONCPP_STRING("");
|
||||
fseek(file, 0, SEEK_END);
|
||||
long const size = ftell(file);
|
||||
unsigned long const usize = static_cast<unsigned long const>(size);
|
||||
unsigned long const usize = static_cast<unsigned long>(size);
|
||||
fseek(file, 0, SEEK_SET);
|
||||
JSONCPP_STRING text;
|
||||
char* buffer = new char[size + 1];
|
||||
|
Loading…
x
Reference in New Issue
Block a user