diff options
author | David Blaikie <dblaikie@gmail.com> | 2012-02-07 19:36:01 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2012-02-07 19:36:01 +0000 |
commit | 0210e976805795df6cbc59024f622c8e42622e55 (patch) | |
tree | 732dcb511c567baa6ef94ef21070aa26cc381d40 /llvm/include/llvm/Support/CommandLine.h | |
parent | 6255bd14f0184b23e990ef57d652f4a63ea5d223 (diff) | |
download | bcm5719-llvm-0210e976805795df6cbc59024f622c8e42622e55.tar.gz bcm5719-llvm-0210e976805795df6cbc59024f622c8e42622e55.zip |
Correct use of const in ParseCommandLineOptions
llvm-svn: 149999
Diffstat (limited to 'llvm/include/llvm/Support/CommandLine.h')
-rw-r--r-- | llvm/include/llvm/Support/CommandLine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Support/CommandLine.h b/llvm/include/llvm/Support/CommandLine.h index c5221af05cb..c212d2d59f6 100644 --- a/llvm/include/llvm/Support/CommandLine.h +++ b/llvm/include/llvm/Support/CommandLine.h @@ -40,7 +40,7 @@ namespace cl { //===----------------------------------------------------------------------===// // ParseCommandLineOptions - Command line option processing entry point. // -void ParseCommandLineOptions(int argc, char **argv, +void ParseCommandLineOptions(int argc, const char * const *argv, const char *Overview = 0, bool ReadResponseFiles = false); |