forked from OSchip/llvm-project
Checkin patch written by Casey Carter, enabling support for the redhat GCC 2.96
compiler. llvm-svn: 3697
This commit is contained in:
parent
d1a21f46ef
commit
5d40b83adf
|
@ -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