svn commit: r332112 - stable/11/usr.bin/dtc
Kyle Evans
kevans at FreeBSD.org
Fri Apr 6 16:45:01 UTC 2018
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)();
More information about the svn-src-stable
mailing list