X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fcliparser.cpp;h=8829d06645573d82a2ebe63a7f242ecc0a371b01;hp=8b1b559e62df02bdcf838c0d16c9214150144e17;hb=b4226543fdbc7a44288986365e6b598d35144062;hpb=6eb132ee838e98925303db804fd9f36a0c2f1c1b diff --git a/src/common/cliparser.cpp b/src/common/cliparser.cpp index 8b1b559e..8829d066 100644 --- a/src/common/cliparser.cpp +++ b/src/common/cliparser.cpp @@ -191,22 +191,3 @@ CliParserArg::CliParserArg(const CliArgType _type, const char _shortName, const boolValue(false) { } - -CliParserArg::CliParserArg(const CliParserArg &other) { - type = other.type; - shortName = other.shortName; - help = other.help; - def = other.def; - value = other.value; - boolValue = other.boolValue; -} - -CliParserArg &CliParserArg::operator=(const CliParserArg &other) { - type = other.type; - shortName = other.shortName; - help = other.help; - def = other.def; - value = other.value; - boolValue = other.boolValue; - return *this; -}