diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-11-20 21:22:00 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-11-20 21:22:00 (GMT) |
commit | 7a0643379be273e64a6454be4be51e652ff093c4 (patch) | |
tree | ebae2ed160aaffe1e01cf800233325e37df1d27f /Source/cmFindCommon.h | |
parent | fdb73547220ed9e9bee0806abf388b830ac79bd5 (diff) | |
download | CMake-7a0643379be273e64a6454be4be51e652ff093c4.zip CMake-7a0643379be273e64a6454be4be51e652ff093c4.tar.gz CMake-7a0643379be273e64a6454be4be51e652ff093c4.tar.bz2 |
cmFindCommon: Remove MSVC6 workaround for nested struct private access.
Diffstat (limited to 'Source/cmFindCommon.h')
-rw-r--r-- | Source/cmFindCommon.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmFindCommon.h b/Source/cmFindCommon.h index e65b2fc..3fefc8d 100644 --- a/Source/cmFindCommon.h +++ b/Source/cmFindCommon.h @@ -33,10 +33,6 @@ public: protected: friend class cmSearchPath; -/* VS6 is broken and can't pass protected class definitions to child classes */ -#if defined(_MSC_VER) && (_MSC_VER < 1300) -public: -#endif /** Used to define groups of path labels */ class PathGroup : public cmPathLabel { @@ -61,9 +57,6 @@ public: static PathLabel CMakeSystem; static PathLabel Guess; }; -#if defined(_MSC_VER) && (_MSC_VER < 1300) -protected: -#endif enum RootPathMode { RootPathModeNever, RootPathModeOnly, |