From 9b2426ecfc4f004fe77badb4cc64f93af3a2d0d3 Mon Sep 17 00:00:00 2001 From: Andreas Sandberg Date: Fri, 7 Aug 2015 09:59:19 +0100 Subject: base: Rewrite the CircleBuf to fix bugs and add serialization The CircleBuf class has at least one bug causing it to overwrite the wrong elements when wrapping. The current code has a lot of unused functionality and duplicated code. This changeset replaces the old implementation with a new version that supports serialization and arbitrary types in the buffer (not just char). --- src/base/SConscript | 1 - 1 file changed, 1 deletion(-) (limited to 'src/base/SConscript') diff --git a/src/base/SConscript b/src/base/SConscript index a00f8ad66..74a248be0 100644 --- a/src/base/SConscript +++ b/src/base/SConscript @@ -37,7 +37,6 @@ Source('atomicio.cc') Source('bigint.cc') Source('bitmap.cc') Source('callback.cc') -Source('circlebuf.cc') Source('cprintf.cc') Source('debug.cc') if env['USE_FENV']: -- cgit v1.2.3