summaryrefslogtreecommitdiff
path: root/Source/cmOutputConverter.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-06-20 22:31:57 +0200
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2016-06-20 22:32:02 +0200
commitb86007e385fc0f4cc45149b68cafebad749bf6e8 (patch)
treef8f0bde1fc04dcbf6201f133f74c983f11c10edb /Source/cmOutputConverter.h
parentcde127b08441b23f7210bfe987812f8d253e960b (diff)
downloadcmake-b86007e385fc0f4cc45149b68cafebad749bf6e8.tar.gz
cmOutputConverter: remove 'optional' argument
Remove the 'optional' paramenter from the second overload of the Convert function. This parameter is used from one single location. Inline the codepath for which the argument is true to the callsite.
Diffstat (limited to 'Source/cmOutputConverter.h')
-rw-r--r--Source/cmOutputConverter.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmOutputConverter.h b/Source/cmOutputConverter.h
index f138d0e897..f661572409 100644
--- a/Source/cmOutputConverter.h
+++ b/Source/cmOutputConverter.h
@@ -58,8 +58,7 @@ public:
std::string Convert(const std::string& remote, RelativeRoot local,
OutputFormat output = UNCHANGED) const;
std::string Convert(RelativeRoot remote, const std::string& local,
- OutputFormat output = UNCHANGED,
- bool optional = false) const;
+ OutputFormat output = UNCHANGED) const;
std::string ConvertDirectorySeparatorsForShell(
const std::string& source) const;