https://github.com/Kitware/CMake
Revision 031fa14b7eab1e85882eb5a9e10cb8f7f66c1350 authored by Brad King on 07 June 2022, 14:57:07 UTC, committed by Kitware Robot on 07 June 2022, 14:57:13 UTC
d14349c907 ci: Enable ISPC tests on Linux, Windows, and macOS nightly builds
49996faaac ci: remove ISPC from the Fedora CI image
3e791592ad gitlab-ci: init macOS and Windows jobs with per-CMAKE_CONFIGURATION scripts

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !7336
2 parent s 4224df9 + d14349c
Raw File
Tip revision: 031fa14b7eab1e85882eb5a9e10cb8f7f66c1350 authored by Brad King on 07 June 2022, 14:57:07 UTC
Merge topic 'ci-ispc'
Tip revision: 031fa14
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