mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-03 17:53:28 +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>;
|