diff -Naur gnome-commander-1.2.8.15-old/src/dict.h gnome-commander-1.2.8.15/src/dict.h --- gnome-commander-1.2.8.15-old/src/dict.h 2011-11-08 01:26:25.000000000 +0200 +++ gnome-commander-1.2.8.15/src/dict.h 2012-07-18 12:28:49.597782592 +0300 @@ -55,8 +55,8 @@ template inline void DICT::add(const KEY k, const VAL &v) { - std::pair k_pos = k_coll.insert(make_pair(k,(const VAL *) NULL)); - std::pair v_pos = v_coll.insert(make_pair(v,(const KEY *) NULL)); + std::pair k_pos = k_coll.insert(std::make_pair(k,(const VAL *) NULL)); + std::pair v_pos = v_coll.insert(std::make_pair(v,(const KEY *) NULL)); if (k_pos.second) k_pos.first->second = &v_pos.first->first; @@ -114,8 +114,8 @@ template inline void DICT::add(const T k, const T &v) { - std::pair k_pos = t_coll.insert(make_pair(k,(T *) NULL)); - std::pair v_pos = t_coll.insert(make_pair(v,(T *) NULL)); + std::pair k_pos = t_coll.insert(std::make_pair(k,(T *) NULL)); + std::pair v_pos = t_coll.insert(std::make_pair(v,(T *) NULL)); if (k_pos.second) k_pos.first->second = &v_pos.first->first;