Remove template args that are the same as the default
authorChris Lattner <sabre@nondot.org>
Mon, 25 Oct 2004 19:09:41 +0000 (19:09 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 25 Oct 2004 19:09:41 +0000 (19:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17223 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvmc/Configuration.h

index e194dd072ef20166a0060228c9951870e8557f09..9a2af0ecd51ab7367bf078362a5eeb19518d18c1 100644 (file)
@@ -51,8 +51,7 @@ namespace llvm {
     /// @{
     private:
       /// @brief This type is used internally to hold the configuration data.
-      typedef hash_map<std::string,CompilerDriver::ConfigData*,
-          hash<std::string>,std::equal_to<std::string> > ConfigDataMap;
+      typedef hash_map<std::string,CompilerDriver::ConfigData*> ConfigDataMap;
       ConfigDataMap Configurations; ///< The cache of configurations
       sys::Path configDir;
     /// @}