From 43925b9fa4ca78f5d79e2b50255861191b81ea14 Mon Sep 17 00:00:00 2001 From: ocornut Date: Tue, 2 Jul 2024 16:10:54 +0200 Subject: [PATCH] Build fix for non Windows platforms. --- imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui.cpp b/imgui.cpp index 1ee3be6821f6..55a32910be89 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -14352,7 +14352,7 @@ static void PlatformOpenInShellFn_DefaultImpl(ImGuiContext*, const char* path) { ::ShellExecuteA(NULL, "open", path, NULL, NULL, SW_SHOWDEFAULT); } -#elif !defined(IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS)) +#elif !defined(IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS) static void PlatformOpenInShellFn_DefaultImpl(ImGuiContext*, const char* path) { #if __APPLE__