diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-08-27 11:44:55 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-08-27 13:26:37 (GMT) |
commit | 5ad25ef4b690252a4251e8824e00b053ea61d000 (patch) | |
tree | 2b68228bd77c3ec6ac9e06f34366f2a18fc7083c | |
parent | ac46384171c54a0fb9c47c32642fbca4ff1e925b (diff) | |
download | CMake-5ad25ef4b690252a4251e8824e00b053ea61d000.zip CMake-5ad25ef4b690252a4251e8824e00b053ea61d000.tar.gz CMake-5ad25ef4b690252a4251e8824e00b053ea61d000.tar.bz2 |
Convert: Remove NONE conversion
It is no longer used.
-rw-r--r-- | Source/cmOutputConverter.cxx | 2 | ||||
-rw-r--r-- | Source/cmOutputConverter.h | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmOutputConverter.cxx b/Source/cmOutputConverter.cxx index 98872d6..80fa4bf 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 ff06ab6..0f4884e 100644 --- a/Source/cmOutputConverter.h +++ b/Source/cmOutputConverter.h @@ -38,7 +38,6 @@ public: */ enum RelativeRoot { - NONE, FULL, HOME, START, |