From 2d2f474794f46fae6d12b97661d4bebe5bb21085 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Fri, 30 May 2025 15:34:50 +0200 Subject: Fix compiler warning warning [-Wundef] warning: "_WIN32" is not defined, evaluates to 0 [-Wundef] --- fluid/Fluid.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fluid') diff --git a/fluid/Fluid.cxx b/fluid/Fluid.cxx index 9a113c478..89ea724b8 100644 --- a/fluid/Fluid.cxx +++ b/fluid/Fluid.cxx @@ -320,7 +320,7 @@ void Application::create_tmpdir() { tmpdir_create_called = true; char buf[128]; -#if _WIN32 +#ifdef _WIN32 // The usual temp file locations on Windows are // %system%\Windows\Temp // %userprofiles%\AppData\Local -- cgit v1.2.3