From 33569945fb51010f648bd59c974c0e3e23b6ee90 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Sat, 1 May 2021 05:19:20 +0000 Subject: [PATCH] silence GCC warning about variable order; --- dmr/lc/LC.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dmr/lc/LC.h b/dmr/lc/LC.h index 44da10be..1448cc41 100644 --- a/dmr/lc/LC.h +++ b/dmr/lc/LC.h @@ -80,12 +80,12 @@ namespace dmr __PROPERTY(bool, emergency, Emergency); /// Flag indicating that encryption is enabled. __PROPERTY(bool, encrypted, Encrypted); - /// Priority level for the traffic. - __PROPERTY(uint8_t, priority, Priority); /// Flag indicating broadcast operation. __PROPERTY(bool, broadcast, Broadcast); /// Flag indicating OVCM operation. __PROPERTY(bool, ovcm, OVCM); + /// Priority level for the traffic. + __PROPERTY(uint8_t, priority, Priority); private: bool m_R;