From c4b83082e32537a776ca99385d3aa817946f0825 Mon Sep 17 00:00:00 2001 From: kayomn Date: Mon, 20 Feb 2023 22:28:15 +0000 Subject: [PATCH] Rename coral::fixed_buffer to coral::ring_buffer --- source/coral.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/coral.cpp b/source/coral.cpp index 4f38cd7..101182f 100644 --- a/source/coral.cpp +++ b/source/coral.cpp @@ -644,8 +644,8 @@ export namespace coral { * Multiplexing byte-based ring buffer of `capacity` size that may be used for memory-backed * I/O operations and lightweight data construction. */ - template struct ring_buffer : public writer, public reader { - ring_buffer(coral::u8 fill_value) : data{fill_value} {} + template struct fixed_buffer : public writer, public reader { + fixed_buffer(coral::u8 fill_value) : data{fill_value} {} /** * Returns the base pointer of the buffer data.