From cc767492930ff94ce13267cfde4a7033a2219d00 Mon Sep 17 00:00:00 2001 From: Sam Kaplan Date: Fri, 5 Jan 2024 09:33:26 -0500 Subject: [PATCH] Fix compiler error when calling addDataNTimes --- src/sst/core/statapi/statbase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sst/core/statapi/statbase.h b/src/sst/core/statapi/statbase.h index 533a30599..0c69d5c51 100644 --- a/src/sst/core/statapi/statbase.h +++ b/src/sst/core/statapi/statbase.h @@ -389,7 +389,7 @@ class Statistic : public StatisticBase, public StatisticCollector // Call the Derived Statistic's implementation // of addData and increment the count if ( isEnabled() ) { - addData_impl_Ntimes(N, std::forward(args)...); + this->addData_impl_Ntimes(N, std::forward(args)...); incrementCollectionCount(N); } }