blob: 1ad24adf9d4c6b87486c406fc09ece10c220395a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- a/krusader/UserAction/tstring.h
+++ b/krusader/UserAction/tstring.h
@@ -125,7 +125,7 @@ TagString_t<T>& TagString_t<T>::operator
str += s.str;
const unsigned disp = length();
for (typename taglist::const_iterator it = s.tags.begin(), end = s.tags.end();it != end;++it) {
- tags.push_back(make_pair((*it).first + disp, (*it).second));
+ tags.push_back(std::make_pair((*it).first + disp, (*it).second));
}
return *this;
}
@@ -134,7 +134,7 @@ template <class T>
void TagString_t<T>::insertTag(uint pos, const T& t)
{
assert(pos <= length());
- tags.push_back(make_pair(pos, t));
+ tags.push_back(std::make_pair(pos, t));
}
#endif
|