Remove dead code.

This commit is contained in:
Bartosz Taudul 2024-09-14 01:04:03 +02:00
parent f387929653
commit 0d17d5eaaa
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -41,12 +41,6 @@
namespace tracy
{
static tracy_force_inline uint32_t UnpackFileLine( uint64_t packed, uint32_t& line )
{
line = packed & 0xFFFFFFFF;
return packed >> 32;
}
static bool SourceFileValid( const char* fn, uint64_t olderThan )
{
struct stat buf;