diff options
author | Brad King <brad.king@kitware.com> | 2012-10-04 19:03:38 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-10-04 19:05:05 (GMT) |
commit | ea17faac4d9df954361c90eecc7c6c3d6f7e30e1 (patch) | |
tree | c3e409af7c03f8529003ef08502723dde5e3489c /Source | |
parent | 35f2af164f97bbbed93160b098652b4ee4d8b964 (diff) | |
download | CMake-ea17faac4d9df954361c90eecc7c6c3d6f7e30e1.zip CMake-ea17faac4d9df954361c90eecc7c6c3d6f7e30e1.tar.gz CMake-ea17faac4d9df954361c90eecc7c6c3d6f7e30e1.tar.bz2 |
cmCTestSVN: Fix compilation with Sun CC 5.1
Hack access to cmCTestVC::Revision on this compiler to avoid errors like
Source/CTest/cmCTestSVN.cxx, line 23: Error: cmCTestSVN::SVNInfo is not accessible from cmCTestSVN::Revision.
Source/CTest/cmCTestSVN.cxx, line 22: Error: cmCTestVC::Revision is not accessible from file level.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CTest/cmCTestSVN.h | 1 | ||||
-rw-r--r-- | Source/CTest/cmCTestVC.h | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestSVN.h b/Source/CTest/cmCTestSVN.h index 73d676e..c6548e3 100644 --- a/Source/CTest/cmCTestSVN.h +++ b/Source/CTest/cmCTestSVN.h @@ -63,6 +63,7 @@ private: // Extended revision structure to include info about external it refers to. struct Revision; + friend struct Revision; // Info of all the repositories (root, externals and nested ones). std::list<SVNInfo> Repositories; diff --git a/Source/CTest/cmCTestVC.h b/Source/CTest/cmCTestVC.h index 44e1dac..9dd0651 100644 --- a/Source/CTest/cmCTestVC.h +++ b/Source/CTest/cmCTestVC.h @@ -67,6 +67,9 @@ protected: virtual void NoteNewRevision(); virtual bool WriteXMLUpdates(std::ostream& xml); +#if defined(__SUNPRO_CC) && __SUNPRO_CC <= 0x510 +public: // Sun CC 5.1 needs help to allow cmCTestSVN::Revision to see this +#endif /** Basic information about one revision of a tree or file. */ struct Revision { @@ -80,6 +83,7 @@ protected: std::string Log; }; +protected: struct File; friend struct File; |