Fix struct/class tag mismatch

> 'TempoMapScope' defined as a struct here but previously declared
> as a class; this is valid, but may result in linker errors under
> the Microsoft C++ ABI [clang-diagnostic-mismatched-tags]
This commit is contained in:
Robin Gareus
2025-08-29 17:22:41 +02:00
parent d5170b0025
commit 060462a9f1

View File

@@ -84,7 +84,7 @@ class LIBTEMPORAL_API ScopedTempoMapOwner
mutable uint64_t local_tempo_map_depth;
private:
friend class TempoMapScope;
friend struct TempoMapScope;
void in () const {
if (_local_tempo_map && local_tempo_map_depth++ == 0 ) {