https://github.com/Kitware/CMake
Raw File
Tip revision: d5401de605af11ad3cd1c6faa64bf319af6b67c6 authored by Brad King on 15 February 2021, 16:48:33 UTC
CMake 3.19.5
Tip revision: d5401de
TestForSSTREAM.cxx
#include <sstream>
int main(int, char* [])
{
  std::ostringstream os;
  os << "12345";
  if (os.str().size() == 5) {
    return 0;
  }
  return -1;
}
back to top