diff options
author | Thomas Haller <thaller@redhat.com> | 2015-02-24 18:01:22 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2015-02-24 18:01:22 +0100 |
commit | 6cdcf36a3d4a3c146dfe82e64a4d669b1f1be438 (patch) | |
tree | ae6a7b3de620dcf574ae93edf2a24af4c717d222 /src/devices | |
parent | fad26c286c14c3cb61b299b4d8811ad98797ce77 (diff) | |
download | NetworkManager-6cdcf36a3d4a3c146dfe82e64a4d669b1f1be438.tar.gz |
device: skip generating enums for internal flags with glib-mkenums
Diffstat (limited to 'src/devices')
-rw-r--r-- | src/devices/nm-device.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/nm-device.h b/src/devices/nm-device.h index edc50a608f..479c9bf299 100644 --- a/src/devices/nm-device.h +++ b/src/devices/nm-device.h @@ -91,7 +91,7 @@ typedef enum NMActStageReturn NMActStageReturn; * a condition, so that adding a flag might make a connection available that would * not be available otherwise. Adding a flag should never make a connection * not available if it would be available otherwise. */ -typedef enum { +typedef enum { /*< skip >*/ NM_DEVICE_CHECK_CON_AVAILABLE_NONE = 0, _NM_DEVICE_CHECK_CON_AVAILABLE_FOR_USER_REQUEST_WAITING_CARRIER = (1L << 0), @@ -109,7 +109,7 @@ struct _NMDevice { /* The flags have an relaxing meaning, that means, specifying more flags, can make * a device appear more available. It can never make a device less available. */ -typedef enum { +typedef enum { /*< skip >*/ NM_DEVICE_CHECK_DEV_AVAILABLE_NONE = 0, NM_DEVICE_CHECK_DEV_AVAILABLE_IGNORE_CARRIER = (1L << 0), |