From 419c185be746df8bba59fe5de991b4a2b3977897 Mon Sep 17 00:00:00 2001 From: OBATA Akio Date: Tue, 14 Nov 2023 15:45:32 +0900 Subject: [PATCH] Prevent to use conditional inclusion preprocessor feature (since C++23) `#elifdef` is supported since C23 and C++23, but such newer compiler is not required here. Signed-off-by: OBATA Akio --- tdeio/tdeio/global.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdeio/tdeio/global.cpp b/tdeio/tdeio/global.cpp index 21437cdd3..be6e6d89a 100644 --- a/tdeio/tdeio/global.cpp +++ b/tdeio/tdeio/global.cpp @@ -1307,7 +1307,7 @@ TDEIO_EXPORT TQByteArray TDEIO::rawErrorDetail(int errorCode, const TQString &er #endif #ifdef HAVE_SYS_UCRED_H #include -#elifdef HAVE_UCRED_H +#elif defined(HAVE_UCRED_H) #include #endif #ifdef HAVE_SYS_MOUNT_H