Silence a warning about "*/" outside a comment.
authorSteve Naroff <snaroff@apple.com>
Tue, 20 May 2008 00:46:15 +0000 (00:46 +0000)
committerSteve Naroff <snaroff@apple.com>
Tue, 20 May 2008 00:46:15 +0000 (00:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51287 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/CommandLine.h

index d1fef1fabe91c9433e44ac12f0a0837420f83b8e..2e1661286c75aa9fc958bbc059724ce116e39546 100644 (file)
@@ -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);
   }