diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2019-10-14 10:50:45 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2019-10-14 11:05:50 +0200 |
commit | c8d715e5f031dec05d2ce79e2554be74c2a802fd (patch) | |
tree | e932b1225f74ca0b1a5d9b16f91d03d380cd2f3f /include | |
parent | 33140e1fc34b86bb5fdc02db142399561b05ec55 (diff) |
api: set enum values not part of the API as private
So that we can avoid gtk-doc complaining about them:
2019-10-14 10:46:59,583:common.py:ParseEnumDeclaration:427:WARNING:Cannot parse enumeration member:
../../../include/ModemManager-enums.h:924: warning: Value description for MMModemLocationSource::MM_MODEM_LOCATION_SOURCE_FIRST is missing in source code comment block.
../../../include/ModemManager-enums.h:924: warning: Value description for MMModemLocationSource::MM_MODEM_LOCATION_SOURCE_LAST is missing in source code comment block.
Diffstat (limited to 'include')
-rw-r--r-- | include/ModemManager-enums.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/ModemManager-enums.h b/include/ModemManager-enums.h index f84eafc2..1523aad7 100644 --- a/include/ModemManager-enums.h +++ b/include/ModemManager-enums.h @@ -942,8 +942,7 @@ typedef enum { /*< underscore_name=mm_modem_location_source >*/ MM_MODEM_LOCATION_SOURCE_GPS_UNMANAGED = 1 << 4, MM_MODEM_LOCATION_SOURCE_AGPS_MSA = 1 << 5, MM_MODEM_LOCATION_SOURCE_AGPS_MSB = 1 << 6, -#if defined (MM_COMPILATION) - /* MM internal methods, not part of the API */ +#if defined (MM_COMPILATION) /*< private >*/ MM_MODEM_LOCATION_SOURCE_FIRST = MM_MODEM_LOCATION_SOURCE_3GPP_LAC_CI, /*< skip >*/ MM_MODEM_LOCATION_SOURCE_LAST = MM_MODEM_LOCATION_SOURCE_AGPS_MSB, /*< skip >*/ #endif |