libnm: drop unnecessary /*clang-format off*/

The problem was that glib-mkenums requires all enum values on a separate
line. And clang-format would put all on the same line, unless the last
value has a trailing comma. Which is the better solution here.
This commit is contained in:
Thomas Haller 2022-02-02 12:39:30 +01:00
parent e62792ff38
commit a56b7ab751
No known key found for this signature in database
GPG key ID: 29C2366E4DFC5728

View file

@ -42,12 +42,10 @@ typedef struct _NMSettingVlanClass NMSettingVlanClass;
* A selector for traffic priority maps; these map Linux SKB priorities
* to 802.1p priorities used in VLANs.
**/
/* clang-format off */
typedef enum {
NM_VLAN_INGRESS_MAP,
NM_VLAN_EGRESS_MAP
NM_VLAN_EGRESS_MAP,
} NMVlanPriorityMap;
/* clang-format on */
/**
* NMVlanFlags: