summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-06-01 18:11:53 (GMT)
committerBrad King <brad.king@kitware.com>2015-06-03 15:44:26 (GMT)
commit3d8c6cd9648089c389c1496fb910d664a5773ab4 (patch)
treeaffe92d05ff945c95b585cc3e47f5fca3e9463ab /Source
parente44e6bcc045916fcab3b3798d9aa9951c35c1878 (diff)
downloadCMake-3d8c6cd9648089c389c1496fb910d664a5773ab4.zip
CMake-3d8c6cd9648089c389c1496fb910d664a5773ab4.tar.gz
CMake-3d8c6cd9648089c389c1496fb910d664a5773ab4.tar.bz2
cmLocalGenerator: Remove obsolete method.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmLocalGenerator.cxx8
-rw-r--r--Source/cmLocalGenerator.h7
2 files changed, 0 insertions, 15 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index 84461b1..f35de03 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -2670,14 +2670,6 @@ cmLocalGenerator::ConstructComment(cmCustomCommandGenerator const& ccg,
}
//----------------------------------------------------------------------------
-std::string
-cmLocalGenerator::ConvertToOptionallyRelativeOutputPath(
- const std::string& remote)
-{
- return this->Convert(remote, START_OUTPUT, SHELL, true);
-}
-
-//----------------------------------------------------------------------------
const char* cmLocalGenerator::GetRelativeRootPath(RelativeRoot relroot)
{
switch (relroot)
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h
index 03fe9ba..30b622e 100644
--- a/Source/cmLocalGenerator.h
+++ b/Source/cmLocalGenerator.h
@@ -126,13 +126,6 @@ public:
*/
const char* GetRelativeRootPath(RelativeRoot relroot);
- /**
- * Convert the given path to an output path. The
- * remote path must use forward slashes and not already be escaped
- * or quoted.
- */
- std::string ConvertToOptionallyRelativeOutputPath(const std::string& remote);
-
///! set/get the parent generator
cmLocalGenerator* GetParent() const {return this->Parent;}