mirror of
https://git.freebsd.org/ports.git
synced 2025-07-08 04:49:17 -04:00
- 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]
17 lines
469 B
C
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);
|
|
}
|