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 | 3fe79addf717a23aa10a921669589bd3fc0aa114 (patch) | |
tree | f014c52835da1bea1b582e62ca3c33f239c48548 /llvm/tools/llvmc/Configuration.h | |
parent | 574fecb59e933e67c371c91764592b5c3635460c (diff) | |
download | bcm5719-llvm-3fe79addf717a23aa10a921669589bd3fc0aa114.tar.gz bcm5719-llvm-3fe79addf717a23aa10a921669589bd3fc0aa114.zip |
Remove template args that are the same as the default
llvm-svn: 17223
Diffstat (limited to 'llvm/tools/llvmc/Configuration.h')
-rw-r--r-- | llvm/tools/llvmc/Configuration.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/tools/llvmc/Configuration.h b/llvm/tools/llvmc/Configuration.h index e194dd072ef..9a2af0ecd51 100644 --- a/llvm/tools/llvmc/Configuration.h +++ b/llvm/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; /// @} |