An implementation of the bit-vector representation of sets.
[oota-llvm.git] / include / Support / CommandLine.h
index 8ea8f8211af60039058085afbcd00c237b874fb6..23a12855439ec6fcb4e6791e93f28df04edfe4b6 100644 (file)
@@ -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); }