ports/cad/meshlab/files/patch-vcglib-vcg-complex-algorithms_subset.h
Pietro Cerutti 4532f38559 - Fix run-time segmentation fault [1]
- Convert to new LIB_DEPENDS format
- Fix build with clang (no longer depends on GCC)
- Statically link against own library libcommon.a, to avoid
  installing a library with such a generic name as libcommon.so

PR:		183474 [1]
Submitted by:	Pierre Smars <smars@yuntech.edu.tw> [1]
2013-10-31 17:19:27 +00:00

17 lines
469 B
C

--- ../../vcglib/vcg/complex/algorithms/subset.h.orig 2013-10-31 09:34:59.000000000 +0100
+++ ../../vcglib/vcg/complex/algorithms/subset.h 2013-10-31 09:35:06.000000000 +0100
@@ -86,12 +86,12 @@
return (v<o.v);
}
- bool operator ==(const InsertedV & o)
+ bool operator ==(const InsertedV & o) const
{
return (v==o.v);
}
- bool operator !=(const InsertedV & o)
+ bool operator !=(const InsertedV & o) const
{
return (v!=o.v);
}