You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// "warning: inline function 'void std::atomic_init(std::atomic<_ITp>*, _ITp) [with _ITp = std::thread::id]' used but never defined [enabled by default]"
79
80
// Using the constructor (above) in that case.
80
-
#if defined(__llvm__)
81
+
#if(defined(__llvm__) && defined(__APPLE__))
81
82
std::atomic_init(&m_owner, std::thread::id());
82
-
#endif
83
-
83
+
#endif
84
+
84
85
// If this assert fails on your system, you'll have to replace std::thread::id with a
85
86
// more compact, platform-specific thread ID, or just comment the assert and live with
0 commit comments