mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 19:39:00 +08:00
6 lines
87 B
C++
6 lines
87 B
C++
#pragma once
|
|
#include <memory>
|
|
|
|
template<class T>
|
|
using optional = std::unique_ptr<T>;
|