Fix plugin API for gcc 2.9-aix51-020209 (#12233)

Use proper C function prototype syntax to satisfy this compiler.
This commit is contained in:
Daniel R. Gomez 2011-05-29 00:28:00 -04:00 committed by Brad King
parent 909bab1f4f
commit a4cba0e8be
1 changed files with 1 additions and 1 deletions

View File

@ -518,7 +518,7 @@ public:
};
cmCPluginAPISourceFileMap cmCPluginAPISourceFiles;
void * CCONV cmCreateSourceFile()
void * CCONV cmCreateSourceFile(void)
{
return (void*)new cmCPluginAPISourceFile;
}