diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-08-27 11:44:57 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-08-27 13:41:17 (GMT) |
commit | 146bf9267ca88831d7cff4d121f414a3a73e26de (patch) | |
tree | 37f5b57f5f798c7501c1d99a7c2177cb73ad58d7 | |
parent | 58ba87f892316b9f9cbb7851a940ec808527e36a (diff) | |
download | CMake-146bf9267ca88831d7cff4d121f414a3a73e26de.zip CMake-146bf9267ca88831d7cff4d121f414a3a73e26de.tar.gz CMake-146bf9267ca88831d7cff4d121f414a3a73e26de.tar.bz2 |
Convert: Remove 'FULL' conversion
It is no longer used.
-rw-r--r-- | Source/cmOutputConverter.cxx | 3 | ||||
-rw-r--r-- | Source/cmOutputConverter.h | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmOutputConverter.cxx b/Source/cmOutputConverter.cxx index 176c9a0..f056a1b 100644 --- a/Source/cmOutputConverter.cxx +++ b/Source/cmOutputConverter.cxx @@ -70,9 +70,6 @@ std::string cmOutputConverter::ConvertToRelativePath( this->StateSnapshot.GetDirectory().GetCurrentBinaryComponents(), result); break; - case FULL: - result = cmSystemTools::CollapseFullPath(result); - break; } return result; } diff --git a/Source/cmOutputConverter.h b/Source/cmOutputConverter.h index 71bb086..c2403db 100644 --- a/Source/cmOutputConverter.h +++ b/Source/cmOutputConverter.h @@ -38,7 +38,6 @@ public: */ enum RelativeRoot { - FULL, HOME, START, HOME_OUTPUT, |