The open source OpenXR runtime

ext/tracy: Silence warnings

+8 -1
+7
src/external/tracy/client/TracyProfiler.hpp
··· 178 178 uint64_t ptr; 179 179 uint64_t extra; 180 180 uint32_t id; 181 + 182 + SymbolQueueItem(SymbolQueueItemType type, uint64_t ptr) 183 + : SymbolQueueItem(type, ptr, 0) {} 184 + SymbolQueueItem(SymbolQueueItemType type, uint64_t ptr, uint64_t extra) 185 + : SymbolQueueItem(type, ptr, extra, 0) {} 186 + SymbolQueueItem(SymbolQueueItemType type, uint64_t ptr, uint64_t extra, uint32_t id) 187 + : type{type}, ptr{ptr}, extra{extra}, id{id} {} 181 188 }; 182 189 183 190 public:
+1 -1
src/external/tracy/client/tracy_rpmalloc.cpp
··· 699 699 # define _Thread_local __thread 700 700 # endif 701 701 # endif 702 - static _Thread_local heap_t* _memory_thread_heap TLS_MODEL; 702 + static thread_local heap_t* _memory_thread_heap TLS_MODEL; 703 703 #endif 704 704 705 705 static inline heap_t*