24 lines
648 B
C++
24 lines
648 B
C++
|
//===----------------------------------------------------------------------===//
|
|||
|
//
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>The LLVM Compiler Infrastructure
|
|||
|
//
|
|||
|
// This file is distributed under the University of Illinois Open Source
|
|||
|
// License. See LICENSE.TXT for details.
|
|||
|
//
|
|||
|
//===----------------------------------------------------------------------===//
|
|||
|
|
|||
|
// <memory>
|
|||
|
|
|||
|
// pointer_safety get_pointer_safety();
|
|||
|
|
|||
|
#include <memory>
|
|||
|
#include <cassert>
|
|||
|
|
|||
|
int main()
|
|||
|
{
|
|||
|
std::pointer_safety r = std::get_pointer_safety();
|
|||
|
assert(r == std::pointer_safety::relaxed ||
|
|||
|
r == std::pointer_safety::preferred ||
|
|||
|
r == std::pointer_safety::strict);
|
|||
|
}
|