https://github.com/Kitware/CMake
Raw File
Tip revision: 39c6ac5112382093f99d2ee375162cdec57e4aec authored by Brad King on 01 June 2020, 11:56:25 UTC
CMake 3.16.8
Tip revision: 39c6ac5
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