diff options
author | Stephen Kelly <steveire@gmail.com> | 2011-08-11 08:54:21 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2011-08-11 08:55:12 (GMT) |
commit | 1590d5fe4f95a800635ba9078e822d742a96dc18 (patch) | |
tree | 8dec154a33c2c288b030359400d37843d9fbf158 /Tests/Module/GenerateExportHeader/libstatic | |
parent | 750b67c5a1957f5fa2c7a483050f0ef0959c9924 (diff) | |
download | CMake-1590d5fe4f95a800635ba9078e822d742a96dc18.zip CMake-1590d5fe4f95a800635ba9078e822d742a96dc18.tar.gz CMake-1590d5fe4f95a800635ba9078e822d742a96dc18.tar.bz2 |
Don't export methods on already exported classes.
This is always a mistake.
Diffstat (limited to 'Tests/Module/GenerateExportHeader/libstatic')
-rw-r--r-- | Tests/Module/GenerateExportHeader/libstatic/libstatic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Module/GenerateExportHeader/libstatic/libstatic.h b/Tests/Module/GenerateExportHeader/libstatic/libstatic.h index cd68cdc..cc7a35b 100644 --- a/Tests/Module/GenerateExportHeader/libstatic/libstatic.h +++ b/Tests/Module/GenerateExportHeader/libstatic/libstatic.h @@ -8,7 +8,7 @@ class LIBSTATIC_EXPORT Libstatic { public: int libstatic() const; - int LIBSTATIC_EXPORT libstatic_exported() const; + int libstatic_exported() const; int LIBSTATIC_DEPRECATED libstatic_deprecated() const; |