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; }