"...pipelines/alt_diffusion/pipeline_alt_diffusion.py" did not exist on "c18941b01ad0ea6b07d020f353d81153c632a374"
Commit 27689277 authored by Jesse Beder's avatar Jesse Beder
Browse files

Included <cstring> for strcmp

parent 5c54431b
......@@ -2,6 +2,7 @@
#include "tests.h"
#include <fstream>
#include <iostream>
#include <cstring>
void run()
{
......@@ -27,7 +28,7 @@ int main(int argc, char **argv)
{
bool verbose = false;
for(int i=1;i<argc;i++) {
if(strcmp(argv[i], "-v") == 0)
if(std::strcmp(argv[i], "-v") == 0)
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