mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-09 06:10:29 +01:00
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:
parent
e62792ff38
commit
a56b7ab751
1 changed files with 1 additions and 3 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue