Pair: Include an unused return to avoid compiler warning

This commit is contained in:
Henry Weller
2018-08-03 12:07:14 +01:00
parent ab3187783a
commit 5c6e283b35

View File

@ -116,6 +116,7 @@ public:
FatalErrorInFunction FatalErrorInFunction
<< "Call to other only valid for Pair with differing" << "Call to other only valid for Pair with differing"
<< " elements:" << *this << abort(FatalError); << " elements:" << *this << abort(FatalError);
return first();
} }
else if (first() == a) else if (first() == a)
{ {