void trim()

in platforms/Windows/CustomActions/SwiftInstaller/Sources/swift_installer.cc [48:52]


void trim(std::basic_string<CharType_> &string) noexcept {
  string.erase(std::remove_if(std::begin(string), std::end(string),
                              [](CharType_ ch) { return !std::isprint(ch); }),
               std::end(string));
}