summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authorkevans <kevans@FreeBSD.org>2018-04-06 16:45:00 +0000
committerkevans <kevans@FreeBSD.org>2018-04-06 16:45:00 +0000
commit66840ef896236eb36709f278834ea5aa7db5217f (patch)
tree739551972ab6fa3e06fa2ecce4f0cc45b00b9e16 /usr.bin
parentf346a5c3b8dc37b82e30dab3354b72f1ca17fd83 (diff)
downloadFreeBSD-src-66840ef896236eb36709f278834ea5aa7db5217f.zip
FreeBSD-src-66840ef896236eb36709f278834ea5aa7db5217f.tar.gz
MFC r320160: dtc: Update to upstream 917526
- Add missing "typename" in divmod's "using" of binary_operator_base::result.
Diffstat (limited to 'usr.bin')
-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 d0fa022..38b38b4 100644
--- a/usr.bin/dtc/input_buffer.cc
+++ b/usr.bin/dtc/input_buffer.cc
@@ -698,7 +698,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)();
OpenPOWER on IntegriCloud