ERR: On some compilers structure inside class cannot reference private typdefs from the same class

This commit is contained in:
Andy Cedilnik 2004-03-17 08:20:27 -05:00
parent cb37fe01f6
commit 6b56245932
1 changed files with 1 additions and 1 deletions

View File

@ -28,6 +28,7 @@ class cmCTest
{ {
public: public:
typedef std::vector<cmStdString> tm_VectorOfStrings; typedef std::vector<cmStdString> tm_VectorOfStrings;
typedef std::vector<cmListFileArgument> tm_VectorOfListFileArgs;
///! Process Command line arguments ///! Process Command line arguments
int Run(std::vector<std::string>const&, std::string* output = 0); int Run(std::vector<std::string>const&, std::string* output = 0);
@ -243,7 +244,6 @@ private:
std::string m_PostContext; std::string m_PostContext;
}; };
typedef std::vector<cmListFileArgument> tm_VectorOfListFileArgs;
struct cmCTestTestProperties struct cmCTestTestProperties
{ {
cmStdString Name; cmStdString Name;