aboutsummaryrefslogtreecommitdiffstats
path: root/source/circular.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2022-05-22 13:29:45 -0400
committerClyne Sullivan <clyne@bitgloo.com>2022-05-22 13:29:45 -0400
commit660d967ec0ac79ea2a43946be4c056ef2d21ffc4 (patch)
tree63bb27d5b762b2a0dc77861a649fe109095a31d7 /source/circular.hpp
parent1b176cf6cd75c8031a140961655cdd3c16589a68 (diff)
bug fixes; dynamic time measure; sync sample drawing
Diffstat (limited to 'source/circular.hpp')
-rw-r--r--source/circular.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/circular.hpp b/source/circular.hpp
index 6b82068..4f49322 100644
--- a/source/circular.hpp
+++ b/source/circular.hpp
@@ -21,7 +21,7 @@ public:
CircularBuffer(Container<T>& container) :
m_begin(std::begin(container)),
m_end(std::end(container)),
- m_current(std::begin(container)) {}
+ m_current(m_begin) {}
void put(const T& value) noexcept {
*m_current = value;
@@ -33,6 +33,11 @@ public:
return std::distance(m_begin, m_end);
}
+ void reset(const T& fill) noexcept {
+ std::fill(m_begin, m_end, fill);
+ m_current = m_begin;
+ }
+
private:
Container<T>::iterator m_begin;
Container<T>::iterator m_end;