1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Update int type in Python API

This commit is contained in:
Igor S. Gerasimov
2025-01-02 21:44:06 +01:00
parent 7093eb0b08
commit 3e88544d1f
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ namespace py = pybind11;
#include "tracy/Tracy.hpp"
using OptionalString = std::optional<std::string>;
using OptionalInt = std::optional<int>;
using OptionalInt = std::optional<int32_t>;
#ifdef TRACY_ENABLE
template <typename Type = uint64_t>