79101aec3a
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@115207 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
484 B
C++
23 lines
484 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// <atomic>
|
|
|
|
// struct atomic_flag
|
|
|
|
// atomic_flag() = default;
|
|
|
|
#include <atomic>
|
|
#include <cassert>
|
|
|
|
int main()
|
|
{
|
|
std::atomic_flag f;
|
|
}
|