Skip to content

Commit

Permalink
add missing algorithm include to sstinfo (#1085)
Browse files Browse the repository at this point in the history
  • Loading branch information
berquist authored and gvoskuilen committed May 23, 2024
1 parent 4f503c2 commit 0693c06
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sst/core/sstinfo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include "sst/core/subcomponent.h"
#include "sst/core/warnmacros.h"

#include <algorithm>
#include <cerrno>
#include <cstdio>
#include <cstdlib>
Expand Down Expand Up @@ -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;
}

Expand Down

0 comments on commit 0693c06

Please sign in to comment.