girepository: Fix hole in GIFunctionInfoFlags

It’s unclear why there was a hole in this. Let’s keep things less
confusing by eliminating it.

Fixes commit 453dd4be9e906078a7fb7466819ce1876a629a45.

Signed-off-by: Philip Withnall <pwithnall@gnome.org>
This commit is contained in:
Philip Withnall 2024-07-24 18:36:45 +02:00
parent 0a60b57fd4
commit 39671c196d
No known key found for this signature in database
GPG Key ID: DCDF5885B1F3ED73

View File

@ -416,7 +416,7 @@ typedef enum
GI_FUNCTION_IS_GETTER = 1 << 2,
GI_FUNCTION_IS_SETTER = 1 << 3,
GI_FUNCTION_WRAPS_VFUNC = 1 << 4,
GI_FUNCTION_IS_ASYNC = 1 << 8,
GI_FUNCTION_IS_ASYNC = 1 << 5,
} GIFunctionInfoFlags;
G_END_DECLS