Date: Fri, 6 Apr 2018 16:45:01 +0000 (UTC) From: Kyle Evans <kevans@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r332112 - stable/11/usr.bin/dtc Message-ID: <201804061645.w36Gj1CI046351@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kevans Date: Fri Apr 6 16:45:00 2018 New Revision: 332112 URL: https://svnweb.freebsd.org/changeset/base/332112 Log: MFC r320160: dtc: Update to upstream 917526 - Add missing "typename" in divmod's "using" of binary_operator_base::result. Modified: stable/11/usr.bin/dtc/input_buffer.cc Directory Properties: stable/11/ (props changed) Modified: stable/11/usr.bin/dtc/input_buffer.cc ============================================================================== --- stable/11/usr.bin/dtc/input_buffer.cc Fri Apr 6 16:26:46 2018 (r332111) +++ stable/11/usr.bin/dtc/input_buffer.cc Fri Apr 6 16:45:00 2018 (r332112) @@ -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)();
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804061645.w36Gj1CI046351>