Visualizer: fix clang build error

Signed-off-by: Jacob Hilliard <jhlliar@amazon.com>
This commit is contained in:
Jacob Hilliard
2021-07-27 09:40:55 -07:00
parent 11a001946f
commit a064cedb59
2 changed files with 2 additions and 2 deletions
@@ -33,7 +33,7 @@ namespace AZ
void ResetPerFrameStatistics();
// Get a string of all threads that this region executed in during the last frame
AZStd::string TableRow::GetExecutingThreadsLabel() const;
AZStd::string GetExecutingThreadsLabel() const;
AZStd::string m_groupName;
AZStd::string m_regionName;
@@ -180,7 +180,7 @@ namespace AZ
ImGui::Text("%.2f", CpuProfilerImGuiHelper::TicksToMs(statistics->m_maxTicks));
ImGui::TableNextColumn();
ImGui::Text("%ld", statistics->m_invocationsLastFrame);
ImGui::Text("%llu", statistics->m_invocationsLastFrame);
ImGui::TableNextColumn();
ImGui::Text("%.2f", CpuProfilerImGuiHelper::TicksToMs(statistics->m_lastFrameTotalTicks));