From a6b14885071b8f2935673725ea48505c5c900de7 Mon Sep 17 00:00:00 2001 From: Lander Gallastegi Date: Mon, 9 Sep 2024 01:05:07 +0200 Subject: [PATCH] Fix gcc warning Fix warning of missing newline before EOF. --- src/imgui/imgui_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imgui/imgui_config.h b/src/imgui/imgui_config.h index 4602382ed..c61e0ccf1 100644 --- a/src/imgui/imgui_config.h +++ b/src/imgui/imgui_config.h @@ -26,4 +26,4 @@ extern void assert_fail_debug_msg(const char* msg); #define IMGUI_DEFINE_MATH_OPERATORS #define IM_VEC2_CLASS_EXTRA \ - constexpr ImVec2(float _v) : x(_v), y(_v) {} \ No newline at end of file + constexpr ImVec2(float _v) : x(_v), y(_v) {}