This is an automated email from the ASF dual-hosted git repository.

bneradt pushed a commit to branch dev-1-2-7
in repository https://gitbox.apache.org/repos/asf/trafficserver-libswoc.git

commit ba762836f902bee8c4bfb8ccc59bc8fd6fef5f6f
Author: Alan M. Carroll <[email protected]>
AuthorDate: Fri Jun 19 11:19:15 2020 -0500

    Fix missing "std" for "nullptr_t".
---
 code/include/swoc/IntrusiveDList.h | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/code/include/swoc/IntrusiveDList.h 
b/code/include/swoc/IntrusiveDList.h
index 1204f67..fa0bb10 100644
--- a/code/include/swoc/IntrusiveDList.h
+++ b/code/include/swoc/IntrusiveDList.h
@@ -77,8 +77,10 @@ public:
   // Get the result of calling the pointer access function, then strip off 
reference and pointer
   // qualifiers. @c nullptr is used instead of the pointer type because this 
is done precisely
   // to find that type.
-  using value_type = typename std::remove_pointer<
-      typename std::remove_reference<typename 
std::invoke_result<decltype(L::next_ptr), std::nullptr_t>::type>::type>::type;
+  using value_type =
+      typename std::remove_pointer<
+        typename std::remove_reference<
+          typename std::invoke_result<decltype(L::next_ptr), 
std::nullptr_t>::type>::type>::type;
 
   /// Const iterator.
   class const_iterator {

Reply via email to