Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GenericParameters.h: add missing clear and empty check for double map #692

Merged
merged 1 commit into from
Sep 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion include/podio/GenericParameters.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,14 +124,15 @@ class GenericParameters {
void clear() {
_intMap.clear();
_floatMap.clear();
_doubleMap.clear();
_stringMap.clear();
}

void print(std::ostream& os = std::cout, bool flush = true) const;

/// Check if no parameter is stored (i.e. if all internal maps are empty)
bool empty() const {
return _intMap.empty() && _floatMap.empty() && _stringMap.empty();
return _intMap.empty() && _floatMap.empty() && _doubleMap.empty() && _stringMap.empty();
}

#if PODIO_ENABLE_SIO
Expand Down