1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 04:23:51 +00:00

Merge pull request #378 from robertblaketaylor/master

Fix unreachable error when compiling warnings as errors + timer fallback
This commit is contained in:
Bartosz Taudul 2022-05-03 01:42:04 +02:00 committed by GitHub
commit fa306dd98e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -224,7 +224,9 @@ public:
# endif
#endif
return 0; // unreacheble branch
#if !defined TRACY_TIMER_FALLBACK
return 0; // unreachable branch
#endif
}
tracy_force_inline uint32_t GetNextZoneId()