cmFindCommon: Remove MSVC6 workaround for nested struct private access.

This commit is contained in:
Stephen Kelly 2014-11-20 22:22:00 +01:00
parent fdb7354722
commit 7a0643379b
1 changed files with 0 additions and 7 deletions

View File

@ -33,10 +33,6 @@ public:
protected: protected:
friend class cmSearchPath; 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 */ /** Used to define groups of path labels */
class PathGroup : public cmPathLabel class PathGroup : public cmPathLabel
{ {
@ -61,9 +57,6 @@ public:
static PathLabel CMakeSystem; static PathLabel CMakeSystem;
static PathLabel Guess; static PathLabel Guess;
}; };
#if defined(_MSC_VER) && (_MSC_VER < 1300)
protected:
#endif
enum RootPathMode { RootPathModeNever, enum RootPathMode { RootPathModeNever,
RootPathModeOnly, RootPathModeOnly,