aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2012-02-07 19:36:01 +0000
committerDavid Blaikie <dblaikie@gmail.com>2012-02-07 19:36:01 +0000
commitebba0558c84b67f73989e174e4512f5af0c06cb1 (patch)
tree481fe713adaa79cacc9227ee93b6be1bb7b9e4f4 /include/llvm/Support
parentefde86753d6f324ac9d0b42e48fd3ebf40c17905 (diff)
downloadexternal_llvm-ebba0558c84b67f73989e174e4512f5af0c06cb1.zip
external_llvm-ebba0558c84b67f73989e174e4512f5af0c06cb1.tar.gz
external_llvm-ebba0558c84b67f73989e174e4512f5af0c06cb1.tar.bz2
Correct use of const in ParseCommandLineOptions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149999 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-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 c5221af..c212d2d 100644
--- a/include/llvm/Support/CommandLine.h
+++ b/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);