summaryrefslogtreecommitdiffstats
path: root/Tests/LoadCommand
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-09-20 14:06:00 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-09-20 14:06:00 (GMT)
commite5a8887426da6314855beca296c532119e8d3935 (patch)
tree2d62ef7688999a821115fcbee5f00ecbc616438c /Tests/LoadCommand
parentb380a37418fc0a8b053795a5f7211c2c598a9c82 (diff)
downloadCMake-e5a8887426da6314855beca296c532119e8d3935.zip
CMake-e5a8887426da6314855beca296c532119e8d3935.tar.gz
CMake-e5a8887426da6314855beca296c532119e8d3935.tar.bz2
removed c++ style comments
Diffstat (limited to 'Tests/LoadCommand')
-rw-r--r--Tests/LoadCommand/CMakeCommands/cmTestCommand.c8
1 files changed, 4 insertions, 4 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);