~sharpie/geos/3.3.2

« back to all changes in this revision

Viewing changes to source/operation/buffer/BufferBuilder.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Fabio Tranchitella
  • Date: 2006-11-06 21:35:52 UTC
  • mfrom: (3.1.3 feisty)
  • Revision ID: james.westby@ubuntu.com-20061106213552-m03o92ggj1na737b
Tags: 2.2.3-3
debian/control: move doxygen from build-depends-indep to build-depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**********************************************************************
2
 
 * $Id: BufferBuilder.cpp,v 1.25 2004/12/08 13:54:43 strk Exp $
 
2
 * $Id: BufferBuilder.cpp,v 1.25.2.1 2005/08/22 13:30:32 strk Exp $
3
3
 *
4
4
 * GEOS - Geometry Engine Open Source
5
5
 * http://geos.refractions.net
247
247
}
248
248
 
249
249
bool BufferSubgraphGT(BufferSubgraph *first, BufferSubgraph *second) {
250
 
        if (first->compareTo(second)>=0)
 
250
        if (first->compareTo(second)>0)
251
251
                return true;
252
252
        else
253
253
                return false;
304
304
 
305
305
/**********************************************************************
306
306
 * $Log: BufferBuilder.cpp,v $
 
307
 * Revision 1.25.2.1  2005/08/22 13:30:32  strk
 
308
 * Fixed comparator functions used with STL sort() algorithm to
 
309
 * implement StrictWeakOrdering semantic.
 
310
 *
307
311
 * Revision 1.25  2004/12/08 13:54:43  strk
308
312
 * gcc warnings checked and fixed, general cleanups.
309
313
 *