summaryrefslogtreecommitdiffhomepage
path: root/serialize/packbits-impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'serialize/packbits-impl.cpp')
-rw-r--r--serialize/packbits-impl.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/serialize/packbits-impl.cpp b/serialize/packbits-impl.cpp
deleted file mode 100644
index b03b31b6..00000000
--- a/serialize/packbits-impl.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "packbits-impl.hpp"
-#include "compat/exception.hpp"
-
-namespace floormat::Pack_impl {
-
-void throw_on_read_nonzero() noexcept(false)
-{
- throw std::runtime_error{"extra bits in pack_read()"};
-}
-
-void throw_on_write_input_bit_overflow() noexcept(false)
-{
- throw std::runtime_error{"extra bits in pack_write()"};
-}
-
-} // namespace floormat::Pack_impl