azure-sdk-for-cpp icon indicating copy to clipboard operation
azure-sdk-for-cpp copied to clipboard

Fix libcxx build

Open rschu1ze opened this issue 7 months ago • 4 comments

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.

rschu1ze avatar Jul 05 '24 09:07 rschu1ze