https://github.com/Kitware/CMake
Raw File
Tip revision: c5541cf0da1093635fea7da5a40e64e481b5477e authored by Brad King on 09 March 2018, 13:33:11 UTC
CMake 3.11.0-rc3
Tip revision: c5541cf
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