diff options
author | Chris Lattner <sabre@nondot.org> | 2004-06-03 22:07:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-06-03 22:07:26 +0000 |
commit | e0c83d2566be5132d06d12651efdb86141c7a8c6 (patch) | |
tree | e511950fb6166b1d0b6f241543a3f1e58c293a20 /llvm/include/Support/CommandLine.h | |
parent | 0a7167311545e6edc0e758e9330f5749b80c5cfd (diff) | |
download | bcm5719-llvm-e0c83d2566be5132d06d12651efdb86141c7a8c6.tar.gz bcm5719-llvm-e0c83d2566be5132d06d12651efdb86141c7a8c6.zip |
The prototype for ParseCommandLineOptions changed at some point, but this
was never updated. I guess GCC just ignores the prototype
llvm-svn: 13995
Diffstat (limited to 'llvm/include/Support/CommandLine.h')
-rw-r--r-- | llvm/include/Support/CommandLine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/Support/CommandLine.h b/llvm/include/Support/CommandLine.h index 1a4a2adaab0..0d1d14813cd 100644 --- a/llvm/include/Support/CommandLine.h +++ b/llvm/include/Support/CommandLine.h @@ -119,7 +119,7 @@ enum MiscFlags { // Miscellaneous flags to adjust argument // class alias; class Option { - friend void cl::ParseCommandLineOptions(int &, char **, const char *, int); + friend void cl::ParseCommandLineOptions(int &, char **, const char *); friend class alias; // handleOccurrences - Overriden by subclasses to handle the value passed into |