19 lines
357 B
C++
19 lines
357 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: auOptionalEx.hpp
|
|
Date: 2022-3-23
|
|
Author: Reece
|
|
Warning: deprecated
|
|
***/
|
|
#pragma once
|
|
|
|
#include "auCopyMoveUtils.hpp"
|
|
#include "auHashUtils.hpp"
|
|
|
|
|
|
#include "ThirdParty/tartanllamaOptional.hpp"
|
|
|
|
template <typename T>
|
|
using AuOptionalEx = tl::optional<T>;
|