50 lines
1.7 KiB
Diff
50 lines
1.7 KiB
Diff
diff --git a/adobe/once.hpp b/adobe/once.hpp
|
|
index 5f005a4..e349b92 100644
|
|
--- a/adobe/once.hpp
|
|
+++ b/adobe/once.hpp
|
|
@@ -11,12 +11,12 @@
|
|
|
|
/*************************************************************************************************/
|
|
|
|
-#include <adobe/config.hpp>
|
|
-
|
|
#if defined(BOOST_HAS_THREADS)
|
|
#include <boost/thread.hpp>
|
|
#endif
|
|
|
|
+#include <adobe/config.hpp>
|
|
+
|
|
/*************************************************************************************************/
|
|
|
|
namespace adobe {
|
|
diff --git a/adobe/vector.hpp b/adobe/vector.hpp
|
|
index 926cfa9..2d23e59 100644
|
|
--- a/adobe/vector.hpp
|
|
+++ b/adobe/vector.hpp
|
|
@@ -354,7 +354,7 @@ typename vector<T, A>::iterator vector<T, A>::insert(iterator p, I f, I l, std::
|
|
|
|
if (n < after) {
|
|
append_move(last - n, last);
|
|
- move_backward(p, last - n, last);
|
|
+ adobe::move_backward(p, last - n, last);
|
|
std::copy(f, l, p);
|
|
} else {
|
|
I m = f;
|
|
@@ -387,7 +387,7 @@ typename vector<T, A>::iterator vector<T, A>::insert_move(iterator p, I f, I l)
|
|
|
|
if (n < after) {
|
|
append_move(last - n, last);
|
|
- move_backward(p, last - n, last);
|
|
+ adobe::move_backward(p, last - n, last);
|
|
adobe::move(f, l, p);
|
|
} else {
|
|
I m = f;
|
|
@@ -430,7 +430,7 @@ typename vector<T, A>::iterator vector<T, A>::insert(iterator p, size_type n, co
|
|
|
|
if (n < after) {
|
|
append_move(last - n, last);
|
|
- move_backward(p, last - n, last);
|
|
+ adobe::move_backward(p, last - n, last);
|
|
std::fill_n(p, n, x);
|
|
} else {
|
|
std::uninitialized_fill_n(last, n - after, x);
|