summaryrefslogtreecommitdiff
path: root/src/cairo-path-fixed-private.h
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2006-12-19 13:13:11 -0800
committerCarl Worth <cworth@cworth.org>2006-12-22 17:59:20 -0800
commit7b1509f4f37118d14bd5d70365d1608ead5e2819 (patch)
treed317f003e136a2c18a0faeee14d5cc11992ebd1c /src/cairo-path-fixed-private.h
parent9d2d3b95e359cd2829c8d02a378dbfec2065e832 (diff)
downloadcairo-7b1509f4f37118d14bd5d70365d1608ead5e2819.tar.gz
Reimplement path.has_current point as a 1-bit bitfield
Diffstat (limited to 'src/cairo-path-fixed-private.h')
-rw-r--r--src/cairo-path-fixed-private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-path-fixed-private.h b/src/cairo-path-fixed-private.h
index e8e0df194..8e0d530c3 100644
--- a/src/cairo-path-fixed-private.h
+++ b/src/cairo-path-fixed-private.h
@@ -68,7 +68,7 @@ struct _cairo_path_fixed {
cairo_point_t last_move_point;
cairo_point_t current_point;
- int has_current_point;
+ unsigned int has_current_point : 1;
};
#endif /* CAIRO_PATH_FIXED_PRIVATE_H */