azure-sdk-for-cpp
azure-sdk-for-cpp copied to clipboard
Fix libcxx build
Member variable AvroRecord::m_values
is of type std::vector<AvroDatum>
but AvroDatum
is only forward-declared at that point. Newer libcxx versions reject such code.
As a remedy, this PR moves class AvroRecord
after the declaration of AvroDatum
.