index
:
CMake.git
master
release
CMake is a cross-platform, open-source build system generator.
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Source
/
Checks
/
cm_cxx_atomic.cxx
blob: 098a7a72b7dc054f86c1c12622c2d806ea1b7fa3 (
plain
)
1
2
3
4
5
6
#include <atomic>
int
main
()
{
std
::
atomic
<
long long
>(
0
).
load
();
return
0
;
}