diff options
Diffstat (limited to 'Source/cmExpandedCommandArgument.cxx')
-rw-r--r-- | Source/cmExpandedCommandArgument.cxx | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Source/cmExpandedCommandArgument.cxx b/Source/cmExpandedCommandArgument.cxx index 4477cf5..df7fba1 100644 --- a/Source/cmExpandedCommandArgument.cxx +++ b/Source/cmExpandedCommandArgument.cxx @@ -12,17 +12,16 @@ #include "cmExpandedCommandArgument.h" -cmExpandedCommandArgument::cmExpandedCommandArgument(): - Quoted(false) +cmExpandedCommandArgument::cmExpandedCommandArgument() + : Quoted(false) { - } -cmExpandedCommandArgument::cmExpandedCommandArgument( - std::string const& value, bool quoted): - Value(value), Quoted(quoted) +cmExpandedCommandArgument::cmExpandedCommandArgument(std::string const& value, + bool quoted) + : Value(value) + , Quoted(quoted) { - } std::string const& cmExpandedCommandArgument::GetValue() const @@ -35,7 +34,7 @@ bool cmExpandedCommandArgument::WasQuoted() const return this->Quoted; } -bool cmExpandedCommandArgument::operator== (std::string const& value) const +bool cmExpandedCommandArgument::operator==(std::string const& value) const { return this->Value == value; } |