Convert: Remove obsolete HOME and START enum values

This commit is contained in:
Stephen Kelly 2016-08-27 17:55:31 +02:00
parent 0a98c74c1b
commit f1d845ae74
2 changed files with 0 additions and 10 deletions

View File

@ -52,14 +52,6 @@ std::string cmOutputConverter::ConvertToRelativePath(
std::string result; std::string result;
switch (relative) { switch (relative) {
case HOME:
result = this->ConvertToRelativePath(
this->GetState()->GetSourceDirectory(), source);
break;
case START:
result = this->ConvertToRelativePath(
this->StateSnapshot.GetDirectory().GetCurrentSource(), source);
break;
case HOME_OUTPUT: case HOME_OUTPUT:
result = this->ConvertToRelativePath( result = this->ConvertToRelativePath(
this->GetState()->GetBinaryDirectory(), source); this->GetState()->GetBinaryDirectory(), source);

View File

@ -40,8 +40,6 @@ public:
*/ */
enum RelativeRoot enum RelativeRoot
{ {
HOME,
START,
HOME_OUTPUT, HOME_OUTPUT,
START_OUTPUT START_OUTPUT
}; };