diff options
author | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-08-11 03:12:09 +0000 |
---|---|---|
committer | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-08-11 03:12:09 +0000 |
commit | 2f932b8c4141cebdbda89c76cbb3d52137dc3fec (patch) | |
tree | 8adadee99818c67925bddf53ef30ed217e8479fc /utils | |
parent | 12f187c555300fd7dc2873b604bd70dc11583d80 (diff) |
get_default mapped_type
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@518 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/hash.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/hash.h b/utils/hash.h index c241d139..e89b1863 100755 --- a/utils/hash.h +++ b/utils/hash.h @@ -51,10 +51,11 @@ struct murmur_hash_array } }; + // adds default val to table if key wasn't found, returns ref to val template <class H,class K> typename H::mapped_type & get_default(H &ht,K const& k,typename H::mapped_type const& v) { - return const_cast<typename H::data_type &>(ht.insert(typename H::value_type(k,v)).first->second); + return const_cast<typename H::mapped_type &>(ht.insert(typename H::value_type(k,v)).first->second); } #endif |