From f9538d6cb84e802c184b91797f219e6fa263ca06 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Sat, 14 Apr 2007 18:10:44 +0000 Subject: [PATCH] Same think: missing operator!= for Quadruple. Warning: I have not tested that one. --- STL_Extension/include/CGAL/utility.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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