Hi all, haven't see anything from the github question so I thought I'd ask here. I just saw they updated the vcpkg port to 11 and upgraded.
Prior compiles went fine, now I'm getting:
unresolved external symbol "public: static char const * const openvdb::v11_0::GridBase::META_GRID_CLASS"
unresolved external symbol "public: static char const * const openvdb::v11_0::GridBase::META_GRID_NAME"
The only thing I'm doing is:
openvdb::tools::MultiResGrid<FloatGrid::TreeType> mrg(levels + 1, grid;
and commenting out that line builds without any issues.
levels is an int based off voxel count defaulting to 3
grid is a floatgrid.
Is there anything that changed from 10 to 11 for this to suddenly show up?