From: Steve Naroff Date: Tue, 20 May 2008 00:46:15 +0000 (+0000) Subject: Silence a warning about "*/" outside a comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0008f654bf08dc631a1abaa175dd08f1fd1be75e;p=oota-llvm.git Silence a warning about "*/" outside a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51287 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h index d1fef1fabe9..2e1661286c7 100644 --- a/include/llvm/Support/CommandLine.h +++ b/include/llvm/Support/CommandLine.h @@ -1257,7 +1257,7 @@ public: class alias : public Option { Option *AliasFor; - virtual bool handleOccurrence(unsigned pos, const char */*ArgName*/, + virtual bool handleOccurrence(unsigned pos, const char * /*ArgName*/, const std::string &Arg) { return AliasFor->handleOccurrence(pos, AliasFor->ArgStr, Arg); }