summaryrefslogtreecommitdiff
path: root/utils/batched_append.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/batched_append.h')
-rwxr-xr-xutils/batched_append.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/batched_append.h b/utils/batched_append.h
index 14a6d576..842f3209 100755
--- a/utils/batched_append.h
+++ b/utils/batched_append.h
@@ -13,7 +13,7 @@ void batched_append(Vector &v,SRange const& s) {
template <class SRange,class Vector>
void batched_append_swap(Vector &v,SRange & s) {
- using namespace std; // to find the right swap
+ using namespace std; // to find the right swap via ADL
size_t i=v.size();
size_t news=i+s.size();
v.resize(news);