diff options
author | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-08-11 03:02:38 +0000 |
---|---|---|
committer | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-08-11 03:02:38 +0000 |
commit | 5b6a409e0818529ca4ac1c080bd091437eae2911 (patch) | |
tree | 26fd6f4fb8ed02b358ee7e757b7a30467316bf3f /decoder/batched_append.h | |
parent | fd5351477569ab0db63b38aa2a2da3bbb2b2a1a6 (diff) |
cfg binarization compiles
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@515 ec762483-ff6d-05da-a07a-a48fb63a330f
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); } |