summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-08-02 21:11:31 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2021-08-02 21:11:31 +0100
commit9c857cb80bd2145e0b80b63266671c43619f5b73 (patch)
tree0c8f285c9488fb2f9cee5831d34fb2794732a2de /lib
parentAllow longer for e2e test to run (diff)
downloadmygrate-9c857cb80bd2145e0b80b63266671c43619f5b73.tar.bz2
mygrate-9c857cb80bd2145e0b80b63266671c43619f5b73.tar.xz
mygrate-9c857cb80bd2145e0b80b63266671c43619f5b73.zip
Make BitSet copyable
Diffstat (limited to 'lib')
-rw-r--r--lib/bitset.h2
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;
};
}