summaryrefslogtreecommitdiff
path: root/usr.bin/dtc
diff options
context:
space:
mode:
authorEmmanuel Vadot <manu@FreeBSD.org>2017-06-20 18:29:01 +0000
committerEmmanuel Vadot <manu@FreeBSD.org>2017-06-20 18:29:01 +0000
commit8b4debd26195ab113577b0f8889b80aec17f8364 (patch)
tree71c2c98c4dd7c2b02cedba609c601b73889f7331 /usr.bin/dtc
parent872625501b397c5f908267e910d372348523f19a (diff)
downloadsrc-test-8b4debd26195ab113577b0f8889b80aec17f8364.tar.gz
src-test-8b4debd26195ab113577b0f8889b80aec17f8364.zip
dtc: Update to upstream 917526
- Add missing "typename" in divmod's "using" of binary_operator_base::result.
Notes
Notes: svn path=/head/; revision=320160
Diffstat (limited to 'usr.bin/dtc')
-rw-r--r--usr.bin/dtc/input_buffer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/dtc/input_buffer.cc b/usr.bin/dtc/input_buffer.cc
index a73e2b0945df6..8cea329e8ab1a 100644
--- a/usr.bin/dtc/input_buffer.cc
+++ b/usr.bin/dtc/input_buffer.cc
@@ -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)();