diff options
author | Steve Naroff <snaroff@apple.com> | 2008-05-20 00:46:15 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2008-05-20 00:46:15 +0000 |
commit | 0008f654bf08dc631a1abaa175dd08f1fd1be75e (patch) | |
tree | d8d2d702359214fbb35dc2c51d09d80e368445b8 /include/llvm/Support/CommandLine.h | |
parent | 52abbf5d8a0a894e90175c3b2d2fb9d92c91fe80 (diff) |
Silence a warning about "*/" outside a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51287 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/CommandLine.h')
-rw-r--r-- | include/llvm/Support/CommandLine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h index d1fef1fabe..2e1661286c 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); } |