| 267 | #pragma warning(disable: 4100) // Get rid of (erroneous) 'unreferenced formal parameter' warning |
| 268 | #endif |
| 269 | template<typename U> AE_NO_TSAN weak_atomic(U&& x) : value(std::forward<U>(x)) { } |
| 270 | #ifdef __cplusplus_cli |
| 271 | // Work around bug with universal reference/nullptr combination that only appears when /clr is on |
| 272 | AE_NO_TSAN weak_atomic(nullptr_t) : value(nullptr) { } |
nothing calls this directly
no outgoing calls
no test coverage detected