[gtk/function-annotations: 7/18] Annotate gsk_rounded_rect_is_circular as pure




commit 207b16eb954dd9bb8ff1f4690b8e153d0da254e1
Author: Matthias Clasen <mclasen redhat com>
Date:   Tue Sep 14 12:21:34 2021 -0400

    Annotate gsk_rounded_rect_is_circular as pure
    
    And also mark gsk_rounded_rect_to_string as malloc.

 gsk/gskroundedrectprivate.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gsk/gskroundedrectprivate.h b/gsk/gskroundedrectprivate.h
index 6dfe4b019d..8cd00d3995 100644
--- a/gsk/gskroundedrectprivate.h
+++ b/gsk/gskroundedrectprivate.h
@@ -24,7 +24,7 @@ void                     gsk_rounded_rect_scale_affine          (GskRoundedRect
                                                                  float                 dx,
                                                                  float                 dy);
 
-gboolean                 gsk_rounded_rect_is_circular           (const GskRoundedRect     *self);
+gboolean                 gsk_rounded_rect_is_circular           (const GskRoundedRect     *self) G_GNUC_PURE;
 
 void                     gsk_rounded_rect_path                  (const GskRoundedRect     *self,
                                                                  cairo_t                  *cr);
@@ -33,7 +33,7 @@ void                     gsk_rounded_rect_to_float              (const GskRounde
 
 gboolean                 gsk_rounded_rect_equal                 (gconstpointer             rect1,
                                                                  gconstpointer             rect2) 
G_GNUC_PURE;
-char *                   gsk_rounded_rect_to_string             (const GskRoundedRect     *self);
+char *                   gsk_rounded_rect_to_string             (const GskRoundedRect     *self) 
G_GNUC_MALLOC;
 
 
 G_END_DECLS


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]