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. // The windows module definition source file (.def), if any.
cmSourceFile const* ModuleDefinitionFile; cmSourceFile const* ModuleDefinitionFile;
std::string Convert( std::string Convert(std::string const& source,
std::string const& source, cmOutputConverter::RelativeRoot relative, cmOutputConverter::RelativeRoot relative,
cmOutputConverter::OutputFormat output = cmOutputConverter::UNCHANGED); cmOutputConverter::OutputFormat output);
void AppendFortranFormatFlags(std::string& flags, void AppendFortranFormatFlags(std::string& flags,
cmSourceFile const& source); cmSourceFile const& source);

View File

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