From 822e0bb2872b3bd76cc1849996a8409c844d961f Mon Sep 17 00:00:00 2001 From: Sam Kaplan Date: Mon, 8 Jan 2024 15:17:18 -0500 Subject: [PATCH] Fix compiler error when calling addDataNTimes --- src/sst/core/statapi/statbase.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sst/core/statapi/statbase.h b/src/sst/core/statapi/statbase.h index 533a30599..8b3fbcf45 100644 --- a/src/sst/core/statapi/statbase.h +++ b/src/sst/core/statapi/statbase.h @@ -368,6 +368,8 @@ class Statistic : public StatisticBase, public StatisticCollector using Datum = T; using StatisticCollector::addData_impl; + using StatisticCollector::addData_impl_Ntimes; + // The main method to add data to the statistic /** Add data to the Statistic * This will call the addData_impl() routine in the derived Statistic.