Convert: Remove UNCHANGED enum value

It is no longer used.
This commit is contained in:
Stephen Kelly 2016-08-27 13:44:57 +02:00
parent 146bf9267c
commit 5aca066c5b
2 changed files with 4 additions and 5 deletions

View File

@ -57,9 +57,9 @@ protected:
// The windows module definition source file (.def), if any.
cmSourceFile const* ModuleDefinitionFile;
std::string Convert(
std::string const& source, cmOutputConverter::RelativeRoot relative,
cmOutputConverter::OutputFormat output = cmOutputConverter::UNCHANGED);
std::string Convert(std::string const& source,
cmOutputConverter::RelativeRoot relative,
cmOutputConverter::OutputFormat output);
void AppendFortranFormatFlags(std::string& flags,
cmSourceFile const& source);

View File

@ -45,7 +45,6 @@ public:
};
enum OutputFormat
{
UNCHANGED,
MAKERULE,
SHELL,
WATCOMQUOTE,
@ -54,7 +53,7 @@ public:
std::string ConvertToOutputFormat(const std::string& source,
OutputFormat output) const;
std::string Convert(const std::string& remote, RelativeRoot local,
OutputFormat output = UNCHANGED) const;
OutputFormat output) const;
std::string ConvertToRelativePath(const std::string& remote,
RelativeRoot local) const;
std::string ConvertDirectorySeparatorsForShell(