Skip to content

Commit

Permalink
#98: checker: add default argument for string
Browse files Browse the repository at this point in the history
  • Loading branch information
lifflander committed May 20, 2020
1 parent cccb7cf commit 04cb363
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/checkpoint/dispatch/checker.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ struct BaseCounter : checkpoint::Serializer {
}

template <typename T>
void ignore(T& t, std::string t_name) {
void ignore(T& t, std::string t_name = "") {
assert(stack_->size() > 0 && "Must have valid live stack");
stack_->top().addIgnoredMember(reinterpret_cast<void*>(cleanType(&t)));
}
Expand Down

0 comments on commit 04cb363

Please sign in to comment.