commit | b999616df8f34d8183c5836df76f3cb7b2bfa4b3 | [log] [tgz] |
---|---|---|
author | Christopher Dunn <cdunn2001@gmail.com> | Sun May 15 23:13:47 2016 -0500 |
committer | Christopher Dunn <cdunn2001@gmail.com> | Sun May 15 23:13:47 2016 -0500 |
tree | 039c02232a4863125f21e8345c7eea53fedbe8de | |
parent | d4a49cf511a9ef5ee52af83f8aed4437eaa160e1 [diff] [blame] |
fix warning
diff --git a/src/jsontestrunner/main.cpp b/src/jsontestrunner/main.cpp index a1d911d..45db464 100644 --- a/src/jsontestrunner/main.cpp +++ b/src/jsontestrunner/main.cpp
@@ -58,7 +58,7 @@ 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];