diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-04-30 21:23:37 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-04-30 21:23:37 +0300 |
commit | 1b553860436238f44a5dd781187ea6361002fcf0 (patch) | |
tree | 34241dc8e212d69aa78c8b7642c3fefa9315cb11 /src/notifications.h | |
parent | ef7e7319305f040a47c483b71f2e78da7a1d6149 (diff) | |
download | plus-1b553860436238f44a5dd781187ea6361002fcf0.tar.gz plus-1b553860436238f44a5dd781187ea6361002fcf0.tar.bz2 plus-1b553860436238f44a5dd781187ea6361002fcf0.tar.xz plus-1b553860436238f44a5dd781187ea6361002fcf0.zip |
Fix compilation with old gcc and clang.
Diffstat (limited to 'src/notifications.h')
-rw-r--r-- | src/notifications.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/notifications.h b/src/notifications.h index 0c08c0430..925e634de 100644 --- a/src/notifications.h +++ b/src/notifications.h @@ -41,6 +41,7 @@ namespace NotifyManager struct NotificationInfo final { +#ifdef ADVGCC NotificationInfo(const char *const sound0, const char *const text0, const NotifyFlags flags0) : @@ -50,6 +51,7 @@ namespace NotifyManager { } A_DELETE_COPY(NotificationInfo) +#endif const char *sound; const char *text; |