mirror of
https://github.com/reactos/CMake.git
synced 2025-01-09 05:00:35 +00:00
ab8b77dd33
Don't pass the default value of the openmode parameter explicitly.
13 lines
195 B
C++
13 lines
195 B
C++
|
|
#include <fstream>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
std::ofstream fout("targetoutput.h");
|
|
if (!fout)
|
|
return 1;
|
|
fout << "#define TARGETOUTPUT_DEFINE\n";
|
|
fout.close();
|
|
return 0;
|
|
}
|