gcc does not like individual deprecated attributes.

This commit is contained in:
Francois Best 2016-10-21 07:52:12 +02:00
parent 6fc3e38512
commit 58880bb647
1 changed files with 4 additions and 4 deletions

View File

@ -100,10 +100,10 @@ struct Thru
*/
enum __attribute__ ((deprecated)) MidiFilterMode
{
Off __attribute__((deprecated)) = Thru::off,
Full __attribute__((deprecated)) = Thru::full,
SameChannel __attribute__((deprecated)) = Thru::sameChannel,
DifferentChannel __attribute__((deprecated)) = Thru::differentChannel,
Off = Thru::off,
Full = Thru::full,
SameChannel = Thru::sameChannel,
DifferentChannel = Thru::differentChannel,
};
// -----------------------------------------------------------------------------