tangled
alpha
login
or
join now
matrixfurry.com
/
monado
0
fork
atom
The open source OpenXR runtime
0
fork
atom
overview
issues
pulls
pipelines
ext/tracy: Silence warnings
Jakob Bornecrantz
3 years ago
5da159ce
be7d5c0c
+8
-1
2 changed files
expand all
collapse all
unified
split
src
external
tracy
client
TracyProfiler.hpp
tracy_rpmalloc.cpp
+7
src/external/tracy/client/TracyProfiler.hpp
···
178
178
uint64_t ptr;
179
179
uint64_t extra;
180
180
uint32_t id;
181
181
+
182
182
+
SymbolQueueItem(SymbolQueueItemType type, uint64_t ptr)
183
183
+
: SymbolQueueItem(type, ptr, 0) {}
184
184
+
SymbolQueueItem(SymbolQueueItemType type, uint64_t ptr, uint64_t extra)
185
185
+
: SymbolQueueItem(type, ptr, extra, 0) {}
186
186
+
SymbolQueueItem(SymbolQueueItemType type, uint64_t ptr, uint64_t extra, uint32_t id)
187
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
702
-
static _Thread_local heap_t* _memory_thread_heap TLS_MODEL;
702
702
+
static thread_local heap_t* _memory_thread_heap TLS_MODEL;
703
703
#endif
704
704
705
705
static inline heap_t*