diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-03-17 13:20:27 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-03-17 13:20:27 (GMT) |
commit | 6b5624593288dfbcf1e53dd9f9ac96c06996e62d (patch) | |
tree | c90b15bf6d7e247239febe0e8a273013c5376bbf /Source/cmCTest.h | |
parent | cb37fe01f68766f44e82df973c3768103cfac526 (diff) | |
download | CMake-6b5624593288dfbcf1e53dd9f9ac96c06996e62d.zip CMake-6b5624593288dfbcf1e53dd9f9ac96c06996e62d.tar.gz CMake-6b5624593288dfbcf1e53dd9f9ac96c06996e62d.tar.bz2 |
ERR: On some compilers structure inside class cannot reference private typdefs from the same class
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 707b876..7b641a0 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -28,6 +28,7 @@ class cmCTest { public: typedef std::vector<cmStdString> tm_VectorOfStrings; + typedef std::vector<cmListFileArgument> tm_VectorOfListFileArgs; ///! Process Command line arguments int Run(std::vector<std::string>const&, std::string* output = 0); @@ -243,7 +244,6 @@ private: std::string m_PostContext; }; - typedef std::vector<cmListFileArgument> tm_VectorOfListFileArgs; struct cmCTestTestProperties { cmStdString Name; |