From 146bf9267ca88831d7cff4d121f414a3a73e26de Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sat, 27 Aug 2016 13:44:57 +0200 Subject: [PATCH] Convert: Remove 'FULL' conversion It is no longer used. --- Source/cmOutputConverter.cxx | 3 --- Source/cmOutputConverter.h | 1 - 2 files changed, 4 deletions(-) diff --git a/Source/cmOutputConverter.cxx b/Source/cmOutputConverter.cxx index 176c9a0e1..f056a1bba 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 71bb086f4..c2403db7e 100644 --- a/Source/cmOutputConverter.h +++ b/Source/cmOutputConverter.h @@ -38,7 +38,6 @@ public: */ enum RelativeRoot { - FULL, HOME, START, HOME_OUTPUT,