summaryrefslogtreecommitdiffstats
path: root/Source/cmState.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-06-16 21:15:03 (GMT)
committerStephen Kelly <steveire@gmail.com>2016-09-17 17:49:21 (GMT)
commit6afd35b98a2316685a071a43d0e56448e7ab9ed5 (patch)
tree3ccee94fd935a971913e8253c40417befaa1b979 /Source/cmState.h
parent8d47a20f131147d4cf38e63df0c382ec5844a833 (diff)
downloadCMake-6afd35b98a2316685a071a43d0e56448e7ab9ed5.zip
CMake-6afd35b98a2316685a071a43d0e56448e7ab9ed5.tar.gz
CMake-6afd35b98a2316685a071a43d0e56448e7ab9ed5.tar.bz2
cmState: remove unused code
Remove the code that was used by cmOutputConverter exclusively.
Diffstat (limited to 'Source/cmState.h')
-rw-r--r--Source/cmState.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/cmState.h b/Source/cmState.h
index 9ab4213..0fac42c 100644
--- a/Source/cmState.h
+++ b/Source/cmState.h
@@ -135,9 +135,6 @@ public:
const char* GetCurrentBinary() const;
void SetCurrentBinary(std::string const& dir);
- std::vector<std::string> const& GetCurrentSourceComponents() const;
- std::vector<std::string> const& GetCurrentBinaryComponents() const;
-
const char* GetRelativePathTopSource() const;
const char* GetRelativePathTopBinary() const;
void SetRelativePathTopSource(const char* dir);
@@ -312,9 +309,6 @@ public:
const char* GetBinaryDirectory() const;
void SetBinaryDirectory(std::string const& binaryDirectory);
- std::vector<std::string> const& GetSourceDirectoryComponents() const;
- std::vector<std::string> const& GetBinaryDirectoryComponents() const;
-
void SetWindowsShell(bool windowsShell);
bool UseWindowsShell() const;
void SetWindowsVSIDE(bool windowsVSIDE);
@@ -350,8 +344,6 @@ private:
cmLinkedTree<SnapshotDataType> SnapshotData;
cmLinkedTree<cmDefinitions> VarTree;
- std::vector<std::string> SourceDirectoryComponents;
- std::vector<std::string> BinaryDirectoryComponents;
std::string SourceDirectory;
std::string BinaryDirectory;
bool IsInTryCompile;