Remove redundant insert method in serialize.
authorCryptoManiac <balthazar@yandex.ru>
Sun, 14 Dec 2014 04:08:38 +0000 (08:08 +0400)
committerCryptoManiac <balthazar@yandex.ru>
Sun, 14 Dec 2014 04:08:38 +0000 (08:08 +0400)
Resolve clang compilation issues.

serialize.h

index d67968a..7063b6a 100644 (file)
@@ -932,18 +932,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)
-    {
-        if (it == vch.begin() + nReadPos && 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)
     {
         if (it == vch.begin() + nReadPos && last - first <= nReadPos)