[postgis-tickets] r14665 - Note use of flags
Paul Ramsey
pramsey at cleverelephant.ca
Tue Feb 23 06:49:10 PST 2016
Author: pramsey
Date: 2016-02-23 06:49:09 -0800 (Tue, 23 Feb 2016)
New Revision: 14665
Modified:
trunk/liblwgeom/liblwgeom.h.in
Log:
Note use of flags
Modified: trunk/liblwgeom/liblwgeom.h.in
===================================================================
--- trunk/liblwgeom/liblwgeom.h.in 2016-02-16 09:18:38 UTC (rev 14664)
+++ trunk/liblwgeom/liblwgeom.h.in 2016-02-23 14:49:09 UTC (rev 14665)
@@ -132,8 +132,9 @@
/**
* 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)
More information about the postgis-tickets
mailing list