mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-26 05:00:39 +00:00
Checkin patch written by Casey Carter, enabling support for the redhat GCC 2.96
compiler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3697 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
59afbf3999
commit
4042332d4a
@ -562,6 +562,10 @@ template<unsigned n> struct applicator<char[n]> {
|
||||
template<class Opt>
|
||||
static void opt(const char *Str, Opt &O) { O.setArgStr(Str); }
|
||||
};
|
||||
template<unsigned n> struct applicator<const char[n]> {
|
||||
template<class Opt>
|
||||
static void opt(const char *Str, Opt &O) { O.setArgStr(Str); }
|
||||
};
|
||||
template<> struct applicator<const char*> {
|
||||
template<class Opt>
|
||||
static void opt(const char *Str, Opt &O) { O.setArgStr(Str); }
|
||||
|
@ -562,6 +562,10 @@ template<unsigned n> struct applicator<char[n]> {
|
||||
template<class Opt>
|
||||
static void opt(const char *Str, Opt &O) { O.setArgStr(Str); }
|
||||
};
|
||||
template<unsigned n> struct applicator<const char[n]> {
|
||||
template<class Opt>
|
||||
static void opt(const char *Str, Opt &O) { O.setArgStr(Str); }
|
||||
};
|
||||
template<> struct applicator<const char*> {
|
||||
template<class Opt>
|
||||
static void opt(const char *Str, Opt &O) { O.setArgStr(Str); }
|
||||
|
Loading…
Reference in New Issue
Block a user