diff options
author | Brad King <brad.king@kitware.com> | 2007-06-19 13:18:22 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-06-19 13:18:22 (GMT) |
commit | f786f3ae3288c8a7d0156e62eba121e25ef321b9 (patch) | |
tree | 658196e18172b1c4268a25d2f8f2b538a5e2bffd | |
parent | 0b804cbece9f79dd35a95cf7c3fa44bd5bca5700 (diff) | |
download | CMake-f786f3ae3288c8a7d0156e62eba121e25ef321b9.zip CMake-f786f3ae3288c8a7d0156e62eba121e25ef321b9.tar.gz CMake-f786f3ae3288c8a7d0156e62eba121e25ef321b9.tar.bz2 |
COMP: Work-around warning about static specifier on HP compiler.
-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 d6ef01b..acd663d 100644 --- a/Source/cmCPluginAPI.cxx +++ b/Source/cmCPluginAPI.cxx @@ -518,7 +518,7 @@ public: } } }; -static cmCPluginAPISourceFileMap cmCPluginAPISourceFiles; +cmCPluginAPISourceFileMap cmCPluginAPISourceFiles; void * CCONV cmCreateSourceFile() { |