notify: Don't use constexpr on Haiku

This commit is contained in:
François Revol 2015-09-17 22:18:10 +02:00 committed by Max Kellermann
parent 193ffa06d9
commit bf73d0f905

View File

@ -28,7 +28,8 @@ struct notify {
Cond cond;
bool pending;
#if !defined(WIN32) && !defined(__NetBSD__) && !defined(__BIONIC__)
#if !defined(WIN32) && !defined(__NetBSD__) && !defined(__BIONIC__) && \
!defined(__HAIKU__)
constexpr
#endif
notify():pending(false) {}