Convert: Simplify switch

Make it more clear what is happening here.
This commit is contained in:
Stephen Kelly 2016-08-27 13:48:57 +02:00
parent dc95020efa
commit 76833149ec
1 changed files with 4 additions and 5 deletions

View File

@ -53,15 +53,14 @@ std::string cmOutputConverter::ConvertToRelativePath(
switch (relative) {
case HOME_OUTPUT:
result = this->ConvertToRelativePath(
this->GetState()->GetBinaryDirectory(), source);
result = this->GetState()->GetBinaryDirectory();
break;
case START_OUTPUT:
result = this->ConvertToRelativePath(
this->StateSnapshot.GetDirectory().GetCurrentBinary(), source);
result = this->StateSnapshot.GetDirectory().GetCurrentBinary();
break;
}
return result;
return this->ConvertToRelativePath(result, source);
}
std::string cmOutputConverter::Convert(const std::string& source,