refactor: Drop CDataStream constructors in favor of one taking a Span of bytes

This commit is contained in:
MarcoFalke 2020-11-23 18:53:44 +01:00
parent faa96f841f
commit fa8bdb048e
No known key found for this signature in database
GPG key ID: CE2B75697E69A548
6 changed files with 15 additions and 33 deletions

View file

@ -149,7 +149,7 @@ BOOST_AUTO_TEST_CASE(bitstream_reader_writer)
BOOST_AUTO_TEST_CASE(streams_serializedata_xor)
{
std::vector<char> in;
std::vector<uint8_t> in;
std::vector<char> expected_xor;
std::vector<unsigned char> key;
CDataStream ds(in, 0, 0);