From 23f14a87adac16acf9ee8bc1df2e6cd025ef86e3 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 31 May 2022 21:21:23 -0400 Subject: clean up build process --- include/glm/detail/type_half.inl | 3 ++- include/ui_quest.hpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/glm/detail/type_half.inl b/include/glm/detail/type_half.inl index b9f9f0e..23173d7 100644 --- a/include/glm/detail/type_half.inl +++ b/include/glm/detail/type_half.inl @@ -39,7 +39,8 @@ namespace detail { GLM_FUNC_QUALIFIER float overflow() { - volatile float f = 1e10; + // tcsullivan: Remove volatile for C++20 + /*volatile*/ float f = 1e10; for(int i = 0; i < 10; ++i) f *= f; // this will overflow before the for loop terminates diff --git a/include/ui_quest.hpp b/include/ui_quest.hpp index 1c478ca..ec433e6 100644 --- a/include/ui_quest.hpp +++ b/include/ui_quest.hpp @@ -42,7 +42,7 @@ namespace ui { const auto& titles = QuestSystem::getQuestTitles(); auto y = top_y - 100; const auto x = offset.x - 180; - for (const auto t : titles) { + for (const auto& t : titles) { UISystem::putString(vec2(x, y), t); y -= 20; //ui::putText(x + 40, y, q.desc.c_str()); -- cgit v1.2.3