From 0008f654bf08dc631a1abaa175dd08f1fd1be75e Mon Sep 17 00:00:00 2001 From: Steve Naroff Date: Tue, 20 May 2008 00:46:15 +0000 Subject: [PATCH] Silence a warning about "*/" outside a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51287 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/CommandLine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }