fix warning

This commit is contained in:
Bill Hoffman 2002-04-10 08:38:51 -04:00
parent 2e70c5094f
commit 384937a420

View File

@ -32,6 +32,9 @@ struct CleanUp
{ {
cmMakefileGenerator::UnRegisterGenerators(); cmMakefileGenerator::UnRegisterGenerators();
} }
UseIt()
{
}
}; };
@ -39,6 +42,7 @@ struct CleanUp
int main (int argc, char **argv) int main (int argc, char **argv)
{ {
CleanUp cleanup; CleanUp cleanup;
cleanup.UseIt();
if (argc < 4) if (argc < 4)
{ {
std::cerr << "Usage: " << argv[0] << " test-src-dir test-bin-dir test-executable\n"; std::cerr << "Usage: " << argv[0] << " test-src-dir test-bin-dir test-executable\n";