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
This commit is contained in:
Chris Lattner 2004-10-25 19:09:41 +00:00
parent 7cf820191c
commit 83f7c3792b

View 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;
/// @}