diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-09-20 14:06:00 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-09-20 14:06:00 (GMT) |
commit | e5a8887426da6314855beca296c532119e8d3935 (patch) | |
tree | 2d62ef7688999a821115fcbee5f00ecbc616438c /Tests | |
parent | b380a37418fc0a8b053795a5f7211c2c598a9c82 (diff) | |
download | CMake-e5a8887426da6314855beca296c532119e8d3935.zip CMake-e5a8887426da6314855beca296c532119e8d3935.tar.gz CMake-e5a8887426da6314855beca296c532119e8d3935.tar.bz2 |
removed c++ style comments
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/LoadCommand/CMakeCommands/cmTestCommand.c | 8 | ||||
-rw-r--r-- | Tests/LoadCommandOneConfig/CMakeCommands/cmTestCommand.c | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/Tests/LoadCommand/CMakeCommands/cmTestCommand.c b/Tests/LoadCommand/CMakeCommands/cmTestCommand.c index ecdffc0..b10d599 100644 --- a/Tests/LoadCommand/CMakeCommands/cmTestCommand.c +++ b/Tests/LoadCommand/CMakeCommands/cmTestCommand.c @@ -19,8 +19,8 @@ int InitialPass(void *inf, void *mf, int argc, char *argv[]) cdata->LibraryName = "BOO"; info->CAPI->SetClientData(info,cdata); - // Now check and see if the value has been stored in the cache - // already, if so use that value and don't look for the program + /* Now check and see if the value has been stored in the cache */ + /* already, if so use that value and don't look for the program */ if(!info->CAPI->IsOn(mf,"TEST_COMMAND_TEST1")) { info->CAPI->AddDefinition(mf, "TEST_DEF", "HOO"); @@ -35,7 +35,7 @@ int InitialPass(void *inf, void *mf, int argc, char *argv[]) void FinalPass(void *inf, void *mf) { cmLoadedCommandInfo *info = (cmLoadedCommandInfo *)inf; - // get our client data from initial pass + /* get our client data from initial pass */ cmVTKWrapTclData *cdata = (cmVTKWrapTclData *)info->CAPI->GetClientData(info); if (strcmp(info->CAPI->GetDefinition(mf, "TEST_DEF"),"HOO") || @@ -48,7 +48,7 @@ void FinalPass(void *inf, void *mf) void Destructor(void *inf) { cmLoadedCommandInfo *info = (cmLoadedCommandInfo *)inf; - // get our client data from initial pass + /* get our client data from initial pass */ cmVTKWrapTclData *cdata = (cmVTKWrapTclData *)info->CAPI->GetClientData(info); free(cdata); diff --git a/Tests/LoadCommandOneConfig/CMakeCommands/cmTestCommand.c b/Tests/LoadCommandOneConfig/CMakeCommands/cmTestCommand.c index ecdffc0..b10d599 100644 --- a/Tests/LoadCommandOneConfig/CMakeCommands/cmTestCommand.c +++ b/Tests/LoadCommandOneConfig/CMakeCommands/cmTestCommand.c @@ -19,8 +19,8 @@ int InitialPass(void *inf, void *mf, int argc, char *argv[]) cdata->LibraryName = "BOO"; info->CAPI->SetClientData(info,cdata); - // Now check and see if the value has been stored in the cache - // already, if so use that value and don't look for the program + /* Now check and see if the value has been stored in the cache */ + /* already, if so use that value and don't look for the program */ if(!info->CAPI->IsOn(mf,"TEST_COMMAND_TEST1")) { info->CAPI->AddDefinition(mf, "TEST_DEF", "HOO"); @@ -35,7 +35,7 @@ int InitialPass(void *inf, void *mf, int argc, char *argv[]) void FinalPass(void *inf, void *mf) { cmLoadedCommandInfo *info = (cmLoadedCommandInfo *)inf; - // get our client data from initial pass + /* get our client data from initial pass */ cmVTKWrapTclData *cdata = (cmVTKWrapTclData *)info->CAPI->GetClientData(info); if (strcmp(info->CAPI->GetDefinition(mf, "TEST_DEF"),"HOO") || @@ -48,7 +48,7 @@ void FinalPass(void *inf, void *mf) void Destructor(void *inf) { cmLoadedCommandInfo *info = (cmLoadedCommandInfo *)inf; - // get our client data from initial pass + /* get our client data from initial pass */ cmVTKWrapTclData *cdata = (cmVTKWrapTclData *)info->CAPI->GetClientData(info); free(cdata); |