summaryrefslogtreecommitdiff
path: root/Source/cmExpandedCommandArgument.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmExpandedCommandArgument.cxx')
-rw-r--r--Source/cmExpandedCommandArgument.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmExpandedCommandArgument.cxx b/Source/cmExpandedCommandArgument.cxx
index 0bea65fd0..1c0a72175 100644
--- a/Source/cmExpandedCommandArgument.cxx
+++ b/Source/cmExpandedCommandArgument.cxx
@@ -24,6 +24,11 @@ bool cmExpandedCommandArgument::WasQuoted() const
return this->Quoted;
}
+bool cmExpandedCommandArgument::operator==(const char* value) const
+{
+ return this->Value == value;
+}
+
bool cmExpandedCommandArgument::operator==(std::string const& value) const
{
return this->Value == value;