[llvm-commits] [llvm] r73601 - /llvm/trunk/include/llvm/Support/CommandLine.h
Mikhail Glushenkov
foldr at codedgers.com
Tue Jun 16 20:10:10 PDT 2009
Author: foldr
Date: Tue Jun 16 22:10:10 2009
New Revision: 73601
URL: http://llvm.org/viewvc/llvm-project?rev=73601&view=rev
Log:
Fix comment.
Modified:
llvm/trunk/include/llvm/Support/CommandLine.h
Modified: llvm/trunk/include/llvm/Support/CommandLine.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/CommandLine.h?rev=73601&r1=73600&r2=73601&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/CommandLine.h (original)
+++ llvm/trunk/include/llvm/Support/CommandLine.h Tue Jun 16 22:10:10 2009
@@ -539,7 +539,7 @@
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 @@
}
};
-// 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) {}
More information about the llvm-commits
mailing list