Преглед изворни кода

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

Use proper C function prototype syntax to satisfy this compiler.
Daniel R. Gomez пре 14 година
родитељ
комит
a4cba0e8be
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      Source/cmCPluginAPI.cxx

+ 1 - 1
Source/cmCPluginAPI.cxx

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