diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-01-23 14:25:04 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-01-23 14:25:04 -0500 |
commit | ec2e1fd5c6271bdf45ce22b3bb5cd3b690d92d5b (patch) | |
tree | b00b4f56132b743a64d61dc4652dc1d88b0853fd /source/error.hpp | |
parent | 716be4fc87412541fb1305c8592245a36104b584 (diff) |
increase signal buffers; fix oversample
Diffstat (limited to 'source/error.hpp')
-rw-r--r-- | source/error.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/error.hpp b/source/error.hpp index 699c746..6911792 100644 --- a/source/error.hpp +++ b/source/error.hpp @@ -27,6 +27,10 @@ public: return condition; } + bool hasError() { + return m_index > 0; + } + Error pop() { return m_index == 0 ? Error::None : m_queue[--m_index]; } |