ENH: null terminate at the end of the list

This commit is contained in:
Bill Hoffman 2003-07-03 11:39:33 -04:00
parent edcaaabe99
commit 711febc82d
1 changed files with 3 additions and 1 deletions

View File

@ -186,7 +186,9 @@ bool cmCreateTestSourceList::InitialPass(std::vector<std::string> const& args)
" },\n";
numTests++;
}
// end with an empty struct
fout << " {0,0}\n";
fout <<
"};\n"
"\n"