Commit 31fa45f9 authored by Jakob Otto's avatar Jakob Otto

Fix nitpicks

parent fb5b583b
...@@ -218,7 +218,7 @@ protected: ...@@ -218,7 +218,7 @@ protected:
if (auto err = begin_sequence(str_size)) if (auto err = begin_sequence(str_size))
return err; return err;
for (auto c : x) { for (auto c : x) {
// The standard does not guarantee that char32_t is exactly 16 bits. // The standard does not guarantee that char32_t is exactly 32 bits.
if (auto err = apply_int(*this, static_cast<uint32_t>(c))) if (auto err = apply_int(*this, static_cast<uint32_t>(c)))
return err; return err;
} }
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
using namespace caf; using namespace caf;
CAF_TEST_FIXTURE_SCOPE(serialization_tests, serialization_fixture) CAF_TEST_FIXTURE_SCOPE(serializer_impl_tests, serialization_fixture)
CAF_TEST(serialize to std::vector<char>) { CAF_TEST(serialize to std::vector<char>) {
using container_type = std::vector<char>; using container_type = std::vector<char>;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment