summaryrefslogtreecommitdiff
path: root/src/cairo-error-private.h
diff options
context:
space:
mode:
authorBryce Harrington <b.harrington@samsung.com>2014-02-26 18:40:12 -0800
committerBryce Harrington <b.harrington@samsung.com>2014-02-26 18:40:12 -0800
commitbe206ddf20e7b4e0e87d91c7a18cbdb9cfcec8e6 (patch)
tree1ed6637ef026ca1370722c5a58fa1e3d2698ac28 /src/cairo-error-private.h
parent19b31bbe7018dbe031c650e7497b19a0607ad453 (diff)
downloadcairo-be206ddf20e7b4e0e87d91c7a18cbdb9cfcec8e6.tar.gz
Add explanation to enum _cairo_int_status
Patch based on suggestion by Homer Hsing Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=50416
Diffstat (limited to 'src/cairo-error-private.h')
-rw-r--r--src/cairo-error-private.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/cairo-error-private.h b/src/cairo-error-private.h
index 2d170efc0..178078ad6 100644
--- a/src/cairo-error-private.h
+++ b/src/cairo-error-private.h
@@ -46,10 +46,13 @@
CAIRO_BEGIN_DECLS
-/* Sure wish C had a real enum type so that this would be distinct
+/* _cairo_int_status: internal status
+ *
+ * Sure wish C had a real enum type so that this would be distinct
* from #cairo_status_t. Oh well, without that, I'll use this bogus 100
* offset. We want to keep it fit in int8_t as the compiler may choose
- * that for #cairo_status_t */
+ * that for #cairo_status_t
+ */
enum _cairo_int_status {
CAIRO_INT_STATUS_SUCCESS = 0,