aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2009-06-17 03:10:10 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2009-06-17 03:10:10 +0000
commitca17e1ffe59f6792bb2dfa6f935c5311d265c9d6 (patch)
tree126c131d86cdac2847d8eb29f8769a22cc921cea
parent6229f9651a1691250ca9eb7511fe7613a1a23c06 (diff)
downloadexternal_llvm-ca17e1ffe59f6792bb2dfa6f935c5311d265c9d6.zip
external_llvm-ca17e1ffe59f6792bb2dfa6f935c5311d265c9d6.tar.gz
external_llvm-ca17e1ffe59f6792bb2dfa6f935c5311d265c9d6.tar.bz2
Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73601 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Support/CommandLine.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h
index fa3b870..3ae5013 100644
--- a/include/llvm/Support/CommandLine.h
+++ b/include/llvm/Support/CommandLine.h
@@ -539,7 +539,7 @@ template<>
class parser<bool> : public basic_parser<bool> {
const char *ArgStr;
public:
-
+
// parse - Return true on error.
bool parse(Option &O, const char *ArgName, const std::string &Arg, bool &Val);
@@ -1105,7 +1105,7 @@ public:
}
};
-// multi_arg - Modifier to set the number of additional values.
+// multi_val - Modifier to set the number of additional values.
struct multi_val {
unsigned AdditionalVals;
explicit multi_val(unsigned N) : AdditionalVals(N) {}