From cf399a8b023ec0321c3b83807c9e4b6cedc71fd8 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sat, 5 Oct 2013 04:49:00 +0000 Subject: [PATCH] compact chained_buffer::buffer_t --- include/libtorrent/chained_buffer.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/libtorrent/chained_buffer.hpp b/include/libtorrent/chained_buffer.hpp index d34a5167d..e4aa9bc5e 100644 --- a/include/libtorrent/chained_buffer.hpp +++ b/include/libtorrent/chained_buffer.hpp @@ -63,9 +63,8 @@ namespace libtorrent { boost::function free; // destructs the buffer char* buf; // the first byte of the buffer - int size; // the total size of the buffer - char* start; // the first byte to send/receive in the buffer + int size; // the total size of the buffer int used_size; // this is the number of bytes to send/receive };