Fixed minor issues and typos

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6584 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2015-05-14 20:17:14 +00:00
parent aaa2aa2b56
commit c89cac5262
12 changed files with 21 additions and 21 deletions

View file

@ -67,7 +67,7 @@ typename C::value_type::second_type get_paired_value(const C& cntnr, const K& ke
{
return get_iterator(cntnr,key)->second;
}
template <class V,class C, class K>
template <class V, class C, class K>
V get_paired_value(const C& cntnr, const K& key, const V& defval)
{
typename C::const_iterator it = cntnr.find(key);