diff options
author | Determinant <[email protected]> | 2018-07-27 17:30:05 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-07-27 17:30:05 -0400 |
commit | d2de1d9a704fc4b23e9a9fb8d610620d6d4752c1 (patch) | |
tree | ae706f99bf614470a25abc587cec87ae3fb23341 /test | |
parent | 473551d760bb52d3c8d12b2096c10210e9387389 (diff) |
fix bit operation bugs in Bits
Diffstat (limited to 'test')
-rw-r--r-- | test/test_stream.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_stream.cpp b/test/test_stream.cpp index c9fccac..7128a9a 100644 --- a/test/test_stream.cpp +++ b/test/test_stream.cpp @@ -77,5 +77,9 @@ int main() { Bits d(std::move(c)); printf("%s\n", get_hex(b).c_str()); print(b, b.size()); + Bits e(4); + e.set(0); + e.set(1); + print(e, e.size()); return 0; } |