Commit 5ce7999d by Jonathan Wakely

* include/bits/stl_algo.h (rotate_copy): Add missing std qualification.

From-SVN: r98326
parent e2939e75
2005-04-18 Jonathan Wakely <redi@gcc.gnu.org>
* include/bits/stl_algo.h (rotate_copy): Add missing std qualification.
2005-04-17 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/20914
......
......@@ -1736,7 +1736,8 @@ namespace std
__glibcxx_requires_valid_range(__first, __middle);
__glibcxx_requires_valid_range(__middle, __last);
return std::copy(__first, __middle, copy(__middle, __last, __result));
return std::copy(__first, __middle,
std::copy(__middle, __last, __result));
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment