commit | e50bfefef1bee81afce4ce228900e65044e3d236 | [log] [tgz] |
---|---|---|
author | Hans Johnson <hans-johnson@uiowa.edu> | Wed Dec 12 13:34:37 2018 -0600 |
committer | Christopher Dunn <cdunn2001@gmail.com> | Sun Dec 30 15:29:22 2018 -0600 |
tree | 0ea175dc74acebf2c3409355519039813b3c2e48 | |
parent | 5c8e539af475e6156efbfe2b2cb762076d0b8cf6 [diff] [blame] |
COMP: Prefer the C++ headers over the C99 headers Using the C++11 headers keeps the library cleaner and more rigorously scoped use of namespaces.
diff --git a/src/jsontestrunner/main.cpp b/src/jsontestrunner/main.cpp index 3b5e21a..28691a2 100644 --- a/src/jsontestrunner/main.cpp +++ b/src/jsontestrunner/main.cpp
@@ -16,7 +16,7 @@ #include <algorithm> // sort #include <json/json.h> #include <sstream> -#include <stdio.h> +#include <cstdio> struct Options { JSONCPP_STRING path;