dtc: Update to upstream 917526

- Add missing "typename" in divmod's  "using" of binary_operator_base::result.
This commit is contained in:
Emmanuel Vadot 2017-06-20 18:29:01 +00:00
parent 872625501b
commit 8b4debd261
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=320160

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)();