Merge pull request #14729 from JoshuaVandaele/fix-clang-libstdcpp

PerformanceMetrics: Fix compiling using clang&libstdc++
This commit is contained in:
Scott Mansell
2026-07-14 20:24:24 +12:00
committed by GitHub
+4 -2
View File
@@ -51,8 +51,10 @@ public:
private:
struct FrameBufferSize
{
u32 width = 0;
u32 height = 0;
FrameBufferSize() : width(0), height(0) {}
FrameBufferSize(u32 w, u32 h) : width(w), height(h) {}
u32 width;
u32 height;
};
PerformanceTracker m_fps_counter{"render_times.txt"};