Skip to content

Commit

Permalink
#268: Remove default parameters from Prefixed::unpack method
Browse files Browse the repository at this point in the history
  • Loading branch information
thearusable committed Jul 23, 2024
1 parent a8db884 commit 32264fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/checkpoint/dispatch/dispatch.h
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ struct Prefixed {
* \return a pointer to an unpacked \c T
*/
template <typename T, typename UnpackerT, typename... Args>
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 <typename T>
Expand Down

0 comments on commit 32264fe

Please sign in to comment.