Changes between Initial Version and Version 2 of Ticket #45

Show
Ignore:
Timestamp:
11/25/07 23:22:04 (5 years ago)
Author:
mloskot
Comment:

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  
     1I suggest to rename anonymous enums elements e.g. in SweepLineEvent class currently defined as 
    12{{{ 
    2 I suggest to rename anonymous enums elements e.g. in SweepLineEvent class currently defined as 
    3  
    43enum { 
    54   INSERT = 1, 
    65   DELETE 
    76}; 
     7}}} 
    88 
    99to read as 
    1010 
     11{{{ 
    1112enum { 
    1213   INSERT_EVENT = 1, 
    1314   DELETE_EVENT 
    1415}; 
     16}}} 
    1517 
    1618This 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. 
    1719 
    1820Fixed in patch attached 
    19 }}}