diff options
author | Brad King <brad.king@kitware.com> | 2011-06-02 15:29:15 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-06-02 15:29:15 (GMT) |
commit | e606b6b7db1850cfb6b5dbd1aa553dae5435f73f (patch) | |
tree | feebf54e6f4e13596f0df2bdee50257a1789ac0a /Source | |
parent | a5507c3e8654e4fb72366a21c0c79496f00f9d02 (diff) | |
parent | a4cba0e8be09f1a0a6a9bb9f8c56cbb596447e89 (diff) | |
download | CMake-e606b6b7db1850cfb6b5dbd1aa553dae5435f73f.zip CMake-e606b6b7db1850cfb6b5dbd1aa553dae5435f73f.tar.gz CMake-e606b6b7db1850cfb6b5dbd1aa553dae5435f73f.tar.bz2 |
Merge topic 'aix-gcc-2.9-issue-12233'
a4cba0e Fix plugin API for gcc 2.9-aix51-020209 (#12233)
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmCPluginAPI.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx index 411a28d..e237913 100644 --- a/Source/cmCPluginAPI.cxx +++ b/Source/cmCPluginAPI.cxx @@ -518,7 +518,7 @@ public: }; cmCPluginAPISourceFileMap cmCPluginAPISourceFiles; -void * CCONV cmCreateSourceFile() +void * CCONV cmCreateSourceFile(void) { return (void*)new cmCPluginAPISourceFile; } |