slackbuilds_ponce/system/krusader/krusader-2.4.0_beta1-gcc47.patch
Bill Kirkpatrick 8e3960c6a5 system/krusader: Added a patch for gcc.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
2012-09-10 16:35:37 -05:00

20 lines
688 B
Diff

--- 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