mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-05 23:48:44 +02:00
gicallableinfo: Drop const
qualifier from out-args of invoke()
Not sure what it was doing there — these arguments get written to as part of the invocation. The in-args should be `const` qualified, but not the out-args. This is an API break in libgirepository, but since it’s not been in a stable release yet, that’s fine. Signed-off-by: Philip Withnall <pwithnall@gnome.org> Helps: #3155
This commit is contained in:
@@ -267,7 +267,7 @@ gboolean
|
||||
gi_function_info_invoke (GIFunctionInfo *info,
|
||||
const GIArgument *in_args,
|
||||
gsize n_in_args,
|
||||
const GIArgument *out_args,
|
||||
GIArgument *out_args,
|
||||
gsize n_out_args,
|
||||
GIArgument *return_value,
|
||||
GError **error)
|
||||
|
Reference in New Issue
Block a user