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
diff options
context:
space:
mode:
Diffstat (limited to 'common/TracyStackFrames.hpp')
-rw-r--r--common/TracyStackFrames.hpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/common/TracyStackFrames.hpp b/common/TracyStackFrames.hpp
deleted file mode 100644
index 9d4262c0..00000000
--- a/common/TracyStackFrames.hpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef __TRACYSTACKFRAMES_HPP__
-#define __TRACYSTACKFRAMES_HPP__
-
-#include <stddef.h>
-
-namespace tracy
-{
-
-struct StringMatch
-{
- const char* str;
- size_t len;
-};
-
-extern const char** s_tracyStackFrames;
-extern const StringMatch* s_tracySkipSubframes;
-
-static constexpr int s_tracySkipSubframesMinLen = 7;
-
-}
-
-#endif