Commit 27689277 authored by Jesse Beder's avatar Jesse Beder
Browse files

Included <cstring> for strcmp

parent 5c54431b
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
#include "tests.h" #include "tests.h"
#include <fstream> #include <fstream>
#include <iostream> #include <iostream>
#include <cstring>
void run() void run()
{ {
...@@ -27,7 +28,7 @@ int main(int argc, char **argv) ...@@ -27,7 +28,7 @@ int main(int argc, char **argv)
{ {
bool verbose = false; bool verbose = false;
for(int i=1;i<argc;i++) { for(int i=1;i<argc;i++) {
if(strcmp(argv[i], "-v") == 0) if(std::strcmp(argv[i], "-v") == 0)
verbose = true; verbose = true;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment