diff options
Diffstat (limited to 'decoder/batched_append.h')
-rwxr-xr-x | decoder/batched_append.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/batched_append.h b/decoder/batched_append.h index 745f567f..14a6d576 100755 --- a/decoder/batched_append.h +++ b/decoder/batched_append.h @@ -17,7 +17,7 @@ void batched_append_swap(Vector &v,SRange & s) { size_t i=v.size(); size_t news=i+s.size(); v.resize(news); - typename SRange::iterator_type si=s.begin(); + typename SRange::iterator si=s.begin(); for (;i<news;++i,++si) swap(v[i],*si); } |