diff options
Diffstat (limited to 'common/aloptional.h')
-rw-r--r-- | common/aloptional.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/common/aloptional.h b/common/aloptional.h deleted file mode 100644 index 45b0cf8a..00000000 --- a/common/aloptional.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef AL_OPTIONAL_H -#define AL_OPTIONAL_H - -#include <optional> - -namespace al { - -constexpr auto nullopt = std::nullopt; - -template<typename T> -using optional = std::optional<T>; - -using std::make_optional; - -} // namespace al - -#endif /* AL_OPTIONAL_H */ |