std::get_pointer_safety
Defined in header <memory> | ||
|---|---|---|
std::pointer_safety get_pointer_safety() noexcept; | (since C++11) |
Obtains the implementation-defined pointer safety model, which is a value of type std::pointer_safety.
Parameters
(none).
Return value
The pointer safety used by this implementation.
Example
#include <iostream>
#include <memory>
int main()
{
std::cout << "Pointer safety: ";
switch (std::get_pointer_safety()) {
case std::pointer_safety::strict: std::cout << "strict\n"; break;
case std::pointer_safety::preferred: std::cout << "preferred\n"; break;
case std::pointer_safety::relaxed: std::cout << "relaxed\n"; break;
}
}Possible output:
Pointer safety: relaxed
See also
|
(C++11) | lists pointer safety models (enum) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/memory/gc/get_pointer_safety