Skip to content

Commit

Permalink
changed variadic macro declaration style
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislawkabacinski committed Jul 28, 2017
1 parent cb0398a commit 53d5026
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Notification.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ struct notification_traits<Notification<Args...>>

}

#define MAKE_NOTIFICATION(NAME, args...) inline const Dexode::Notification<args>& getNotification##NAME(){static const Dexode::Notification<args> variable(691283); return variable;}
#define MAKE_NOTIFICATION(NAME, ...) inline const Dexode::Notification<__VA_ARGS__>& getNotification##NAME(){static const Dexode::Notification<__VA_ARGS__> variable(691283); return variable;}

0 comments on commit 53d5026

Please sign in to comment.