diff --git a/STL_Extension/include/CGAL/utility.h b/STL_Extension/include/CGAL/utility.h index 19860742748..6a766e8300c 100644 --- a/STL_Extension/include/CGAL/utility.h +++ b/STL_Extension/include/CGAL/utility.h @@ -158,6 +158,18 @@ operator==(const Quadruple& x, (x.fourth == y.fourth) ); } +template +inline +bool +operator!=(const Quadruple& x, + const Quadruple& y) +{ + return ( (x.first == y.first) && + (x.second == y.second) && + (x.third == y.third) && + (x.fourth == y.fourth) ); +} + template inline bool