From 8c81cec648f9712b4a3b4679479df2724eb15d23 Mon Sep 17 00:00:00 2001 From: oana Date: Fri, 30 Oct 2020 14:55:13 +0000 Subject: [PATCH] Fix compilation error introduced by previous commit that was only detected by older compilers: replace erroneous #elif directive with #else. git-svn-id: http://voip.null.ro/svn/yate@6449 acf43c95-373e-0410-b603-e72c3f656dc1 --- yateclass.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yateclass.h b/yateclass.h index 8237e5c5..eac56277 100644 --- a/yateclass.h +++ b/yateclass.h @@ -1036,7 +1036,7 @@ YATE_API static inline uint32_t YATE_API hashPtr(const void* ptr) { #if (_WORDSIZE == 64) return hashInt64((uintptr_t)ptr); -#elif +#else return hashInt32((intptr_t)ptr); #endif }