summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2016-08-27 13:44:55 +0200
committerStephen Kelly <steveire@gmail.com>2016-08-27 15:26:37 +0200
commit5ad25ef4b690252a4251e8824e00b053ea61d000 (patch)
tree2b68228bd77c3ec6ac9e06f34366f2a18fc7083c
parentac46384171c54a0fb9c47c32642fbca4ff1e925b (diff)
downloadcmake-5ad25ef4b690252a4251e8824e00b053ea61d000.tar.gz
Convert: Remove NONE conversion
It is no longer used.
-rw-r--r--Source/cmOutputConverter.cxx2
-rw-r--r--Source/cmOutputConverter.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmOutputConverter.cxx b/Source/cmOutputConverter.cxx
index 98872d6267..80fa4bf94b 100644
--- a/Source/cmOutputConverter.cxx
+++ b/Source/cmOutputConverter.cxx
@@ -75,8 +75,6 @@ std::string cmOutputConverter::Convert(const std::string& source,
case FULL:
result = cmSystemTools::CollapseFullPath(result);
break;
- case NONE:
- break;
}
return this->ConvertToOutputFormat(result, output);
}
diff --git a/Source/cmOutputConverter.h b/Source/cmOutputConverter.h
index ff06ab60c5..0f4884e608 100644
--- a/Source/cmOutputConverter.h
+++ b/Source/cmOutputConverter.h
@@ -38,7 +38,6 @@ public:
*/
enum RelativeRoot
{
- NONE,
FULL,
HOME,
START,