mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
Reverted std::array<signed char back to std::array<int8_t
This commit is contained in:
parent
8904b91deb
commit
140996b8df
@ -215,7 +215,7 @@ namespace
|
||||
TEST(test_read_int8_t)
|
||||
{
|
||||
std::array<char, 4U> storage = { char(0x80), char(0x5A), char(0xA5), char(0xFF) };
|
||||
std::array<signed char, 4U> expected = { int8_t(0x01), int8_t(0x5A), int8_t(0xA5), int8_t(0xFF) };
|
||||
std::array<int8_t, 4U> expected = { int8_t(0x01), int8_t(0x5A), int8_t(0xA5), int8_t(0xFF) };
|
||||
|
||||
etl::bit_stream_reader bit_stream(storage.data(), storage.size(), etl::endian::little);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user