mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 21:21:16 +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>;
|