context: glib-mkenums chokes on /*< private >*/ but supports /*< skip >*/

The private option is really part of gtk-doc, glib-mkenums does not
support it. Use skip instead.

Reviewed-by: Robert Bragg <robert@linux.intel.com>

(cherry picked from commit 015c36af27a8ce68d60f8aab6a10acdc48c5f38c)
This commit is contained in:
Damien Lespiau 2012-10-06 01:25:27 +01:00 committed by Robert Bragg
parent 87e15d6693
commit 08205a40e1

View File

@ -238,8 +238,7 @@ typedef enum _CoglFeatureID
COGL_FEATURE_ID_GLES2_CONTEXT,
COGL_FEATURE_ID_DEPTH_TEXTURE,
/*< private > */
_COGL_N_FEATURE_IDS
_COGL_N_FEATURE_IDS /*< skip >*/
} CoglFeatureID;