From a749a695065e50a07cd585238857c8f0bebbd959 Mon Sep 17 00:00:00 2001 From: Jonathan Lifflander Date: Tue, 9 Apr 2024 08:43:06 -0700 Subject: [PATCH] #333: warnings: more warning fixes --- src/checkpoint/container/view_traverse_ndim.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/checkpoint/container/view_traverse_ndim.h b/src/checkpoint/container/view_traverse_ndim.h index 1e0f623e..ea9b0639 100644 --- a/src/checkpoint/container/view_traverse_ndim.h +++ b/src/checkpoint/container/view_traverse_ndim.h @@ -228,7 +228,7 @@ struct TraverseRecurImpl { // Test whether the ViewT is actually a std::tuple...> template static bool dispatchViewType( - ViewT const& view, Callable call, TupleT tup, ViewIsTuple* x_ = nullptr + ViewT const& view, Callable call, TupleT tup, ViewIsTuple* = nullptr ) { constexpr auto size = std::tuple_size::value; return dispatchViewTuple(view,call,tup,std::make_index_sequence{}); @@ -236,7 +236,7 @@ struct TraverseRecurImpl { template static bool dispatchViewType( - ViewT const& view, Callable call, TupleT tup, ViewNotTuple* x_ = nullptr + ViewT const& view, Callable call, TupleT tup, ViewNotTuple* = nullptr ) { call(expandTupleToOp(view,tup)); return true;