Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-04-26 22:23:22 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-04-26 23:01:09 +0300
commit066c266df9657cd08011f12b6277fe22acf5c130 (patch)
treeedce06483e3b6cfae4dafd82f6f999726dbb0104 /common
parent1a94929780340b37101622df47cac3e481ddf7c7 (diff)
Add missing includes.
Diffstat (limited to 'common')
-rw-r--r--common/TracyQueue.hpp1
-rw-r--r--common/TracySocket.hpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/common/TracyQueue.hpp b/common/TracyQueue.hpp
index 4deb1910..afa50544 100644
--- a/common/TracyQueue.hpp
+++ b/common/TracyQueue.hpp
@@ -1,6 +1,7 @@
#ifndef __TRACYQUEUE_HPP__
#define __TRACYQUEUE_HPP__
+#include <stddef.h>
#include <stdint.h>
namespace tracy
diff --git a/common/TracySocket.hpp b/common/TracySocket.hpp
index 4de4cca1..01d1a6fa 100644
--- a/common/TracySocket.hpp
+++ b/common/TracySocket.hpp
@@ -2,6 +2,7 @@
#define __TRACYSOCKET_HPP__
#include <atomic>
+#include <stddef.h>
#include <stdint.h>
#include "TracyForceInline.hpp"