diff options
author | Chris Lattner <sabre@nondot.org> | 2004-10-25 19:09:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-10-25 19:09:41 +0000 |
commit | 83f7c3792b0c9257ad9b9cb918d6834072f00fe2 (patch) | |
tree | f7ed0f95d9f6e09c691b34531c8f3f5d1df7aaa7 | |
parent | 7cf820191c0318a3ac75754eb9974a8b844809f6 (diff) |
Remove template args that are the same as the default
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17223 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/llvmc/Configuration.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/llvmc/Configuration.h b/tools/llvmc/Configuration.h index e194dd072e..9a2af0ecd5 100644 --- a/tools/llvmc/Configuration.h +++ b/tools/llvmc/Configuration.h @@ -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; /// @} |