https://github.com/Kitware/CMake
Revision e7eab0ec40f19a1fc81920bdd0dcf356a5b362d4 authored by Kitware Robot on 26 January 2016, 05:01:13 UTC, committed by Kitware Robot on 26 January 2016, 05:01:13 UTC
1 parent c4e1bc6
Raw File
Tip revision: e7eab0ec40f19a1fc81920bdd0dcf356a5b362d4 authored by Kitware Robot on 26 January 2016, 05:01:13 UTC
CMake Nightly Date Stamp
Tip revision: e7eab0e
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