From 32264fe34331c0c9325d667d35f3276f059787db Mon Sep 17 00:00:00 2001 From: Arkadiusz Szczepkowicz Date: Tue, 23 Jul 2024 16:04:38 +0200 Subject: [PATCH] #268: Remove default parameters from Prefixed::unpack method --- src/checkpoint/dispatch/dispatch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/checkpoint/dispatch/dispatch.h b/src/checkpoint/dispatch/dispatch.h index 046a5680..8314195f 100644 --- a/src/checkpoint/dispatch/dispatch.h +++ b/src/checkpoint/dispatch/dispatch.h @@ -221,7 +221,7 @@ struct Prefixed { * \return a pointer to an unpacked \c T */ template - static T* unpack(T* mem, bool check_type = true, bool check_mem = true, Args&&... args); + static T* unpack(T* mem, bool check_type, bool check_mem, Args&&... args); }; template