Changes between Initial Version and Version 2 of Ticket #45
- Timestamp:
- 11/25/07 23:22:04 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #45
- Property severity changed from Annoyance to Content
- Property reporter changed from mateusz@… to mloskot
- Property priority changed from 1 to major
- Property version changed from 3.0.0 to svn-trunk
- Property milestone changed from imported to 3.0.0
- Property resolution changed from none to fixed
-
Ticket #45 – description
initial v2 1 I suggest to rename anonymous enums elements e.g. in SweepLineEvent class currently defined as 1 2 {{{ 2 I suggest to rename anonymous enums elements e.g. in SweepLineEvent class currently defined as3 4 3 enum { 5 4 INSERT = 1, 6 5 DELETE 7 6 }; 7 }}} 8 8 9 9 to read as 10 10 11 {{{ 11 12 enum { 12 13 INSERT_EVENT = 1, 13 14 DELETE_EVENT 14 15 }; 16 }}} 15 17 16 18 This change will help to avoid potential problems on Windows where system header <winnt.h> defines DELETE macro. Currently, this change is required to make GEOS compilable using VC++ 8.0 for Windows CE. 17 19 18 20 Fixed in patch attached 19 }}}
