Also ignore "atomic" header.

This commit is contained in:
Bartosz Taudul 2021-06-09 02:14:01 +02:00
parent 9c2ea8a71f
commit bb0f5025b2
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3
2 changed files with 2 additions and 1 deletions

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 },
{}
};

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;
}