[llvm-commits] [llvm] r51287 - /llvm/trunk/include/llvm/Support/CommandLine.h

Steve Naroff snaroff at apple.com
Mon May 19 17:46:15 PDT 2008


Author: snaroff
Date: Mon May 19 19:46:15 2008
New Revision: 51287

URL: http://llvm.org/viewvc/llvm-project?rev=51287&view=rev
Log:
Silence a warning about "*/" outside a 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=51287&r1=51286&r2=51287&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Support/CommandLine.h (original)
+++ llvm/trunk/include/llvm/Support/CommandLine.h Mon May 19 19:46:15 2008
@@ -1257,7 +1257,7 @@
 
 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);
   }





More information about the llvm-commits mailing list