Fix issue in Pair

This commit is contained in:
Daniel Chappuis 2018-04-04 18:43:28 +02:00
parent 119c58fc45
commit 1e4990ccbf

View File

@ -81,6 +81,7 @@ class Pair {
Pair<T1, T2>& operator=(const Pair<T1, T2>& pair) {
first = pair.first;
second = pair.second;
return *this;
}
};