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:
@@ -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 ) {
|
||||
|
||||
Reference in New Issue
Block a user