diff options
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 5a12d2e..c0e0bf4 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -737,7 +737,6 @@ public: */ cmTest* GetTest(const char* testName) const; const std::vector<cmTest*> *GetTests() const; - std::vector<cmTest*> *GetTests(); /** * Get a list of macros as a ; separated string @@ -807,7 +806,8 @@ protected: std::vector<cmSourceFile*> SourceFiles; // Tests - std::vector<cmTest*> Tests; + std::map<cmStdString, cmTest*> Tests; + std::vector<cmTest*> OrderedTests; // The include and link-library paths. These may have order // dependency, so they must be vectors (not set). |