Skip to content
Snippets Groups Projects
Commit 0276e0f2 authored by mattijs's avatar mattijs
Browse files

BUG: Pair: non-commutative comparison operator. Fixes #490.

parent c631ef57
Branches
Tags
1 merge request!121Merge develop into master for v1706 release
......@@ -3,7 +3,7 @@
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\/ M anipulation |
\\/ M anipulation | Copyright (C) 2017 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
......@@ -171,14 +171,14 @@ Pair<Type> reverse(const Pair<Type>& p)
template<class Type>
bool operator==(const Pair<Type>& a, const Pair<Type>& b)
{
return Pair<Type>::compare(a,b) != 0;
return (a.first() == b.first() && a.second() == b.second());
}
template<class Type>
bool operator!=(const Pair<Type>& a, const Pair<Type>& b)
{
return Pair<Type>::compare(a,b) == 0;
return !(a == b);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment