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

Also ignore "atomic" header.

This commit is contained in:
Bartosz Taudul
2021-06-09 02:14:01 +02:00
parent 9c2ea8a71f
commit bb0f5025b2
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -114,6 +114,7 @@ const StringMatch s_tracySkipSubframes_[] = {
{ "/include/xsavesintrin.h", 23 },
{ "/include/xtestintrin.h", 22 },
{ "/bits/atomic_base.h", 19 },
{ "/atomic", 7 },
{}
};
+1 -1
View File
@@ -15,7 +15,7 @@ struct StringMatch
extern const char** s_tracyStackFrames;
extern const StringMatch* s_tracySkipSubframes;
static constexpr int s_tracySkipSubframesMinLen = 19;
static constexpr int s_tracySkipSubframesMinLen = 7;
}