From 0053c8aa87fc57241922118cde81782e9f2cb9c1 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. llvm-svn: 51287 --- llvm/include/llvm/Support/CommandLine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Support/CommandLine.h b/llvm/include/llvm/Support/CommandLine.h index d1fef1fabe91..2e1661286c75 100644 --- a/llvm/include/llvm/Support/CommandLine.h +++ b/llvm/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); }