summaryrefslogtreecommitdiff
path: root/Tests/Cuda/MixedStandardLevels4/lib.cpp
blob: 2a65c77c96a16380a511a28e4321eef941063296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16


constexpr int func(int A, int B)
{
#if defined(_MSC_VER) && _MSC_VER < 1913
  // no support for extended constexpr
  return B * A;
#else
  // Verify that we have at least c++14
  if (A < B) {
    return A + B;
  } else {
    return B * A;
  }
#endif
}