aboutsummaryrefslogtreecommitdiffstats
path: root/librifunktionsteckensnittsglyfrasteriseringsprogrambiblioteket.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2023-02-05 20:36:21 +0100
committerMattias Andrée <maandree@kth.se>2023-02-05 20:36:21 +0100
commitb53e30ab104d3fd5431cfd9a2b8891dfcbe89d1e (patch)
tree4a50526c79231aa2033fda94a7b4ee9516b8df84 /librifunktionsteckensnittsglyfrasteriseringsprogrambiblioteket.h
parentdraw_linear_bezier_reference: fix bounds checking error (diff)
downloadlibrifunktionsteckensnittsglyfrasteriseringsprogrambiblioteket-b53e30ab104d3fd5431cfd9a2b8891dfcbe89d1e.tar.gz
librifunktionsteckensnittsglyfrasteriseringsprogrambiblioteket-b53e30ab104d3fd5431cfd9a2b8891dfcbe89d1e.tar.bz2
librifunktionsteckensnittsglyfrasteriseringsprogrambiblioteket-b53e30ab104d3fd5431cfd9a2b8891dfcbe89d1e.tar.xz
Fix warnings
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'librifunktionsteckensnittsglyfrasteriseringsprogrambiblioteket.h')
-rw-r--r--librifunktionsteckensnittsglyfrasteriseringsprogrambiblioteket.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/librifunktionsteckensnittsglyfrasteriseringsprogrambiblioteket.h b/librifunktionsteckensnittsglyfrasteriseringsprogrambiblioteket.h
index 747694b..87bdd70 100644
--- a/librifunktionsteckensnittsglyfrasteriseringsprogrambiblioteket.h
+++ b/librifunktionsteckensnittsglyfrasteriseringsprogrambiblioteket.h
@@ -7,6 +7,12 @@
#include <stddef.h>
+#if defined(__clang__)
+# pragma clang diagnostic push
+# pragma clang diagnostic ignored "-Wdocumentation"
+#endif
+
+
/**
* Object that the library draws on, is converted to
* an ink-level image using the `rtgrpblib_fill_shapes`
@@ -136,4 +142,9 @@ void rtgrpblib_draw_circular_arc(RTGRPBLIB_RASTER *restrict raster, /* needed fo
double semiwidth, double semiheight,
double start, double end);
+
+#if defined(__clang__)
+# pragma clang diagnostic pop
+#endif
+
#endif