diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-08-02 21:11:31 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-08-02 21:11:31 +0100 |
commit | 9c857cb80bd2145e0b80b63266671c43619f5b73 (patch) | |
tree | 0c8f285c9488fb2f9cee5831d34fb2794732a2de | |
parent | Allow longer for e2e test to run (diff) | |
download | mygrate-9c857cb80bd2145e0b80b63266671c43619f5b73.tar.bz2 mygrate-9c857cb80bd2145e0b80b63266671c43619f5b73.tar.xz mygrate-9c857cb80bd2145e0b80b63266671c43619f5b73.zip |
Make BitSet copyable
-rw-r--r-- | lib/bitset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bitset.h b/lib/bitset.h index b604ccf..72920d2 100644 --- a/lib/bitset.h +++ b/lib/bitset.h @@ -38,7 +38,7 @@ namespace MyGrate { Iterator end() const; private: - const std::span<const std::byte> bytes; + std::span<const std::byte> bytes; }; } |