[gtk/wip/baedert/for-master: 32/32] css: Make a few token functions pure
- From: Timm Bäder <baedert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/wip/baedert/for-master: 32/32] css: Make a few token functions pure
- Date: Sat, 25 Jan 2020 11:37:35 +0000 (UTC)
commit bfe35833db0885238ef5f49bd48c96fdc01a9e4b
Author: Timm Bäder <mail baedert org>
Date: Sat Jan 25 08:58:20 2020 +0100
css: Make a few token functions pure
gtk/css/gtkcsstokenizerprivate.h | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/gtk/css/gtkcsstokenizerprivate.h b/gtk/css/gtkcsstokenizerprivate.h
index 8119da28e9..279af1860e 100644
--- a/gtk/css/gtkcsstokenizerprivate.h
+++ b/gtk/css/gtkcsstokenizerprivate.h
@@ -109,16 +109,16 @@ union _GtkCssToken {
void gtk_css_token_clear (GtkCssToken *token);
-gboolean gtk_css_token_is_finite (const GtkCssToken *token);
+gboolean gtk_css_token_is_finite (const GtkCssToken *token) G_GNUC_PURE;
gboolean gtk_css_token_is_preserved (const GtkCssToken *token,
- GtkCssTokenType *out_closing);
+ GtkCssTokenType *out_closing)
G_GNUC_PURE;
#define gtk_css_token_is(token, _type) ((token)->type == (_type))
gboolean gtk_css_token_is_ident (const GtkCssToken *token,
- const char *ident);
+ const char *ident) G_GNUC_PURE;
gboolean gtk_css_token_is_function (const GtkCssToken *token,
- const char *ident);
+ const char *ident) G_GNUC_PURE;
gboolean gtk_css_token_is_delim (const GtkCssToken *token,
- gunichar delim);
+ gunichar delim) G_GNUC_PURE;
void gtk_css_token_print (const GtkCssToken *token,
GString *string);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]