diff --git a/coding/read_write_utils.hpp b/coding/read_write_utils.hpp index d628df6528..6a88053027 100644 --- a/coding/read_write_utils.hpp +++ b/coding/read_write_utils.hpp @@ -120,10 +120,9 @@ namespace rw void ReadVectorOfPOD(TSource & src, TCont & v) { typedef typename TCont::value_type ValueT; - /// This assert fails on std::pair and OsmID class. - /// @todo Review this logic in future with new compiler abilities. - /// https://trello.com/c/hzCc9bzN/1254-is-trivial-copy-read-write-utils-hpp - //static_assert(std::is_trivially_copyable::value, ""); + /// This assert fails on std::pair and OsmID class because std::pair is not trivially copyable: + /// std::pair has a non-trivial copy-assignment and move-assignment operator. + //static_assert(std::is_trivially_copyable_v); uint32_t const count = ReadVarUint(src); if (count > 0) @@ -137,10 +136,9 @@ namespace rw void WriteVectorOfPOD(TSink & sink, TCont const & v) { typedef typename TCont::value_type ValueT; - /// This assert fails on std::pair and OsmID class. - /// @todo Review this logic in future with new compiler abilities. - /// https://trello.com/c/hzCc9bzN/1254-is-trivial-copy-read-write-utils-hpp - //static_assert(std::is_trivially_copyable::value, ""); + /// This assert fails on std::pair and OsmID class because std::pair is not trivially copyable: + /// std::pair has a non-trivial copy-assignment and move-assignment operator. + //static_assert(std::is_trivially_copyable_v); uint32_t const count = static_cast(v.size()); WriteVarUint(sink, count);