_MSC_VER
| 105 | ) // I know this won't be allocated to the right alignment, this is okay as we're using alignment for padding. |
| 106 | #endif // _MSC_VER |
| 107 | explicit ThreadLocal(TaskScheduler *ts) |
| 108 | : m_scheduler(ts), m_initializer(), m_data(new ValuePadder<T>[ts->GetThreadCount()]) { |
| 109 | } |
| 110 | #ifdef _MSC_VER |
| 111 | # pragma warning(pop) |
| 112 | #endif // _MSC_VER |
nothing calls this directly
no test coverage detected