Changes between Initial Version and Version 2 of Ticket #96


Ignore:
Timestamp:
Dec 21, 2007, 10:31:02 PM (16 years ago)
Author:
mloskot
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #96

    • Property Priority 2major
    • Property Milestone imported
    • Property Resolution nonenot a bug
    • Property Reporter changed from mateusz@… to mloskot
  • Ticket #96 – Description

    initial v2  
    1 {{{
    21Current verson of the UniqueCoordinateArrayFilter constructor is:
    32
    4 UniqueCoordinateArrayFilter(geom::Coordinate::ConstVect &target) : pts(target) {}
     3{{{
     4UniqueCoordinateArrayFilter(geom::Coordinate::ConstVect& target) : pts(target) {}
     5}}}
    56
    6 ConstVect can be safely passed by const-reference, because pts(target) calls copy constructor.
    7 Const-reference will make the API more clear.
    8 }}}
     7ConstVect can be safely passed by const-reference, because pts(target) calls copy constructor. Const-reference will make the API more clear.