From 1f4ef39603f3184ac3f78e1f52529947303b1bd1 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Thu, 4 Jun 2015 19:25:37 +0200 Subject: cmLocalGenerator: Remove some commented lines of code. They've been commented out for a decade, which seems long enough. --- Source/cmLocalGenerator.cxx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index da95a4d..fe71d0f 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -2622,28 +2622,23 @@ std::string cmLocalGenerator::Convert(const std::string& source, RelativeRoot relative, OutputFormat output) { - // Convert the path to a relative path. std::string result = source; switch (relative) { case HOME: - //result = cmSystemTools::CollapseFullPath(result.c_str()); result = this->ConvertToRelativePath( this->GetState()->GetSourceDirectoryComponents(), result); break; case START: - //result = cmSystemTools::CollapseFullPath(result.c_str()); result = this->ConvertToRelativePath( this->StateSnapshot.GetCurrentSourceDirectoryComponents(), result); break; case HOME_OUTPUT: - //result = cmSystemTools::CollapseFullPath(result.c_str()); result = this->ConvertToRelativePath( this->GetState()->GetBinaryDirectoryComponents(), result); break; case START_OUTPUT: - //result = cmSystemTools::CollapseFullPath(result.c_str()); result = this->ConvertToRelativePath( this->StateSnapshot.GetCurrentBinaryDirectoryComponents(), result); break; -- cgit v0.12