From 0693c06895c9b2be64232a9cd4d17795c0a5ad50 Mon Sep 17 00:00:00 2001 From: Eric Berquist <727571+berquist@users.noreply.github.com> Date: Thu, 23 May 2024 14:41:36 -0600 Subject: [PATCH] add missing algorithm include to sstinfo (#1085) --- src/sst/core/sstinfo.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sst/core/sstinfo.cc b/src/sst/core/sstinfo.cc index cd002c388..38f7599a7 100644 --- a/src/sst/core/sstinfo.cc +++ b/src/sst/core/sstinfo.cc @@ -23,6 +23,7 @@ #include "sst/core/subcomponent.h" #include "sst/core/warnmacros.h" +#include #include #include #include @@ -180,7 +181,7 @@ main(int argc, char* argv[]) std::string convertToLower(std::string input) { - transform(input.begin(), input.end(), input.begin(), ::tolower); + std::transform(input.begin(), input.end(), input.begin(), ::tolower); return input; }