Fix LLVM compilation issues
authorMASM fan <masmfan@gmail.com>
Fri, 7 Nov 2014 18:26:29 +0000 (22:26 +0400)
committerMASM fan <masmfan@gmail.com>
Fri, 7 Nov 2014 18:26:29 +0000 (22:26 +0400)
src/serialize.h

index 3b3dcd4..9dd8ebb 100644 (file)
@@ -811,19 +811,6 @@ public:
     iterator insert(iterator it, const char& x=char()) { return vch.insert(it, x); }
     void insert(iterator it, size_type n, const char& x) { vch.insert(it, n, x); }
 
-    void insert(iterator it, const_iterator first, const_iterator last)
-    {
-        assert(last - first >= 0);
-        if (it == vch.begin() + nReadPos && (unsigned int)(last - first) <= nReadPos)
-        {
-            // special case for inserting at the front when there's room
-            nReadPos -= (last - first);
-            memcpy(&vch[nReadPos], &first[0], last - first);
-        }
-        else
-            vch.insert(it, first, last);
-    }
-
     void insert(iterator it, std::vector<char>::const_iterator first, std::vector<char>::const_iterator last)
     {
         assert(last - first >= 0);