summaryrefslogtreecommitdiff
path: root/include/decoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/decoder.h')
-rw-r--r--include/decoder.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/decoder.h b/include/decoder.h
index 55e7d96..56ea647 100644
--- a/include/decoder.h
+++ b/include/decoder.h
@@ -1,5 +1,7 @@
#pragma once
+#include <cstdint>
+
namespace radio_controller {
struct sample {
@@ -26,7 +28,8 @@ class bit_string final {
int size_ = 0;
public:
- int size() const {
+ int size() const
+ {
return size_;
}
@@ -42,7 +45,6 @@ public:
}
}
- __noinline
void append(bool value)
{
if (size_ < 32) {