Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorHieu Hoang <hieu@hoang.co.uk>2013-05-31 18:13:43 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-05-31 18:13:43 +0400
commitd81b0494307e83e5cdf1451fa613e27dc0b3037e (patch)
tree69676a4ead0cb69f7d67b92ea73d34ce0f4ac728 /util
parentf2064fee26de61388898d0622b4a5a00144e2781 (diff)
request pulled in error
Diffstat (limited to 'util')
-rw-r--r--util/sized_iterator.hh7
1 files changed, 0 insertions, 7 deletions
diff --git a/util/sized_iterator.hh b/util/sized_iterator.hh
index 88ca174e6..eb2016b90 100644
--- a/util/sized_iterator.hh
+++ b/util/sized_iterator.hh
@@ -71,13 +71,6 @@ class SizedProxy {
static_cast<char*>(second.inner_.Data()));
}
- friend void swap(SizedProxy &first, SizedProxy &second) {
- std::swap_ranges(
- static_cast<char*>(first.inner_.Data()),
- static_cast<char*>(first.inner_.Data()) + first.inner_.EntrySize(),
- static_cast<char*>(second.inner_.Data()));
- }
-
private:
friend class util::ProxyIterator<SizedProxy>;