From 33d5c15653992d26b0f1eed95b6c0197e36dc9f1 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 18 Dec 2005 16:03:26 +0000 Subject: [PATCH] blatant compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36433 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/datetime.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/datetime.h b/include/wx/datetime.h index 53da88e61d..42d9e4f926 100644 --- a/include/wx/datetime.h +++ b/include/wx/datetime.h @@ -56,14 +56,14 @@ class WXDLLIMPEXP_BASE wxDateSpan; #ifdef HAVE_LOCALTIME_R #define wxLocaltime_r localtime_r #else -struct tm *wxLocaltime_r(const time_t*, struct tm*) +struct tm *wxLocaltime_r(const time_t*, struct tm*); #warning using pseudo thread-safe wrapper for localtime to emulate localtime_r #endif #ifdef HAVE_GMTIME_R #define wxGmtime_r gmtime_r #else -struct tm *wxGmtime_r(const time_t*, struct tm*) +struct tm *wxGmtime_r(const time_t*, struct tm*); #warning using pseudo thread-safe wrapper for gmtime to emulate gmtime_r #endif -- 2.45.2