summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--default.nix3
-rw-r--r--modules/core/c++/buffer.hpp2
2 files changed, 2 insertions, 3 deletions
diff --git a/default.nix b/default.nix
index 14804f4..f56cae2 100644
--- a/default.nix
+++ b/default.nix
@@ -139,8 +139,10 @@ in rec {
forstio.codec-json
forstio.codec-netcdf
forstio.io
+ forstio.io_codec
forstio.io-tls
forstio.remote
+ forstio.crypto
];
};
@@ -149,7 +151,6 @@ in rec {
paths = [
forstio.remote-sycl
forstio.thread
- forstio.crypto
# forstio.codec-minecraft
];
};
diff --git a/modules/core/c++/buffer.hpp b/modules/core/c++/buffer.hpp
index 74c287e..8b62131 100644
--- a/modules/core/c++/buffer.hpp
+++ b/modules/core/c++/buffer.hpp
@@ -114,8 +114,6 @@ private:
size_t write_position_;
bool write_reached_read_ = false;
- SAW_FORBID_COPY(ring_buffer);
- SAW_FORBID_MOVE(ring_buffer);
public:
ring_buffer();
ring_buffer(size_t size);