mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 12:09:48 +00:00
aa50cdac43
Some code paths may find these useful if available.
7 lines
99 B
C++
7 lines
99 B
C++
#include <memory>
|
|
int main()
|
|
{
|
|
std::unique_ptr<int> u = std::make_unique<int>(0);
|
|
return *u;
|
|
}
|