Fix GCC warning.

This commit is contained in:
levlam 2020-11-06 17:22:44 +03:00
parent 7e82a54417
commit 431b0bddbc

View File

@ -38,7 +38,7 @@ class ThreadLocalStorage {
private:
struct Node {
T value{};
T value;
char padding[TD_CONCURRENCY_PAD];
};
static constexpr int32 MAX_THREAD_ID = 128;