aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/CommandLine.h
diff options
context:
space:
mode:
authorSteve Naroff <snaroff@apple.com>2008-05-20 00:46:15 +0000
committerSteve Naroff <snaroff@apple.com>2008-05-20 00:46:15 +0000
commitb67b5ab5798eef497721acb4a932e82e5d0d6b60 (patch)
treed8d2d702359214fbb35dc2c51d09d80e368445b8 /include/llvm/Support/CommandLine.h
parent2da81443330ae8385d1bb0fb15c58b8fff837282 (diff)
downloadexternal_llvm-b67b5ab5798eef497721acb4a932e82e5d0d6b60.zip
external_llvm-b67b5ab5798eef497721acb4a932e82e5d0d6b60.tar.gz
external_llvm-b67b5ab5798eef497721acb4a932e82e5d0d6b60.tar.bz2
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h
index d1fef1f..2e16612 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);
}