CMake/Tests/AliasTarget/commandgenerator.cpp
Daniel Pfeifer ab8b77dd33 Remove redundant arguments from fstream constructors
Don't pass the default value of the openmode parameter explicitly.
2016-06-14 22:28:55 +02:00

15 lines
225 B
C++

#include <fstream>
#include "object.h"
int main(int argc, char** argv)
{
std::ofstream fout("commandoutput.h");
if (!fout)
return 1;
fout << "#define COMMANDOUTPUT_DEFINE\n";
fout.close();
return object();
}