Revert "Option parsing: support case-insensitive option matching." as it broke Window...
[oota-llvm.git] / include / llvm / Option / OptTable.h
index 5035940af06ba9dc2e87a45be8ff529e811d92e7..a5b59cea3f6790c8a3e2d471000780ba0ca46d5f 100644 (file)
@@ -51,7 +51,6 @@ private:
   /// \brief The static option information table.
   const Info *OptionInfos;
   unsigned NumOptionInfos;
-  bool IgnoreCase;
 
   unsigned TheInputOptionID;
   unsigned TheUnknownOptionID;
@@ -73,8 +72,7 @@ private:
   }
 
 protected:
-  OptTable(const Info *_OptionInfos, unsigned _NumOptionInfos,
-           bool _IgnoreCase = false);
+  OptTable(const Info *_OptionInfos, unsigned _NumOptionInfos);
 public:
   ~OptTable();