From 0c8ba4645457bd4016e9fe812fd596433e8fc4e0 Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Tue, 23 Feb 2016 14:49:09 +0000 Subject: [PATCH] Note use of flags git-svn-id: http://svn.osgeo.org/postgis/trunk@14665 b70326c6-7e19-0410-871a-916f4a2858ee --- liblwgeom/liblwgeom.h.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/liblwgeom/liblwgeom.h.in b/liblwgeom/liblwgeom.h.in index 59bfd1125..7c1e25983 100644 --- a/liblwgeom/liblwgeom.h.in +++ b/liblwgeom/liblwgeom.h.in @@ -132,8 +132,9 @@ typedef enum LWORD_T { /** * Macros for manipulating the 'flags' byte. A uint8_t used as follows: -* ---RGBMZ -* Three unused bits, followed by ReadOnly, Geodetic, HasBBox, HasM and HasZ flags. +* VVSRGBMZ +* Version bit, followed by +* Validty, Solid, ReadOnly, Geodetic, HasBBox, HasM and HasZ flags. */ #define FLAGS_GET_Z(flags) ((flags) & 0x01) #define FLAGS_GET_M(flags) (((flags) & 0x02)>>1) -- 2.40.0