Skip to content

Commit

Permalink
Fix compiler error when calling addDataNTimes
Browse files Browse the repository at this point in the history
  • Loading branch information
stkaplan committed Jan 5, 2024
1 parent a845248 commit cc76749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sst/core/statapi/statbase.h
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ class Statistic : public StatisticBase, public StatisticCollector<T>
// Call the Derived Statistic's implementation
// of addData and increment the count
if ( isEnabled() ) {
addData_impl_Ntimes(N, std::forward<InArgs>(args)...);
this->addData_impl_Ntimes(N, std::forward<InArgs>(args)...);
incrementCollectionCount(N);
}
}
Expand Down

0 comments on commit cc76749

Please sign in to comment.