mirror of
https://github.com/reactos/CMake.git
synced 2024-11-30 15:00:41 +00:00
ab8b77dd33
Don't pass the default value of the openmode parameter explicitly.
15 lines
225 B
C++
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();
|
|
}
|