From 1e4990ccbf4524cdca3154042e22f35843813c1c Mon Sep 17 00:00:00 2001 From: Daniel Chappuis Date: Wed, 4 Apr 2018 18:43:28 +0200 Subject: [PATCH] Fix issue in Pair --- src/containers/Pair.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/containers/Pair.h b/src/containers/Pair.h index 89d333b2..354af7d4 100644 --- a/src/containers/Pair.h +++ b/src/containers/Pair.h @@ -81,6 +81,7 @@ class Pair { Pair& operator=(const Pair& pair) { first = pair.first; second = pair.second; + return *this; } };