mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-24 19:43:33 +01:00
6 lines
87 B
C
6 lines
87 B
C
![]() |
#pragma once
|
||
|
#include <memory>
|
||
|
|
||
|
template<class T>
|
||
|
using optional = std::unique_ptr<T>;
|