dtc: Update to upstream 917526

- Add missing "typename" in divmod's  "using" of binary_operator_base::result.
This commit is contained in:
manu 2017-06-20 18:29:01 +00:00
parent 63d5603d62
commit 8540be900f

View File

@ -654,7 +654,7 @@ template<typename T>
struct divmod : public binary_operator<5, T>
{
using binary_operator<5, T>::binary_operator;
using binary_operator_base::result;
using typename binary_operator_base::result;
result operator()() override
{
result r = (*binary_operator_base::rhs)();