From a359e56f58864e0845a6c9a1071c9fbc0a1ed6c5 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Mon, 13 Feb 2023 16:14:10 +0000 Subject: [PATCH] gutils: Remove public API decorator from g_set_user_dirs() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It’s a private API, and is not meant to be exposed in the public API. Since it’s only used internally within libglib, we don’t have to expose it in the public symbol table, so drop the decorator. Signed-off-by: Philip Withnall Helps: #2876 --- glib/gutilsprivate.h | 1 - 1 file changed, 1 deletion(-) diff --git a/glib/gutilsprivate.h b/glib/gutilsprivate.h index beecdcc70..24c199305 100644 --- a/glib/gutilsprivate.h +++ b/glib/gutilsprivate.h @@ -28,7 +28,6 @@ G_BEGIN_DECLS -GLIB_AVAILABLE_IN_2_60 void g_set_user_dirs (const gchar *first_dir_type, ...) G_GNUC_NULL_TERMINATED;