This commit is contained in:
Maxime Gimeno 2019-04-10 14:08:37 +02:00
parent 4c3bfb1eed
commit a7361a3444
1 changed files with 2 additions and 2 deletions

View File

@ -1416,7 +1416,7 @@ public:
const std::tuple<O...>& to_tuple() const
{
return static_cast<std::tuple<const O...>&> (*this);
return static_cast<const std::tuple<const O...>&> (*this);
}
};
@ -1459,7 +1459,7 @@ public:
template <class T>
Self& operator=(const T&) { return *this; }
};