forked from dolphin-emu/dolphin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Common: Add a std::optional implementation
std::optional makes a few things a bit neater and less error prone. However, we still cannot use C++17 (unfortunately), so this commit adds an implementation of std::optional that we can use right now. Based on https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/lib/gtl/optional.h which seems to be fairly similar to C++17's <optional> and standards compliant. It's one of the few implementations that handle propagating type traits like copy constructibility, just like libc++/libstdc++.
- Loading branch information
Showing
5 changed files
with
975 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -324,4 +324,4 @@ | |
<ItemGroup> | ||
<Natvis Include="BitField.natvis" /> | ||
</ItemGroup> | ||
</Project> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Copyright 2017 Dolphin Emulator Project | ||
// Licensed under GPLv2+ | ||
// Refer to the license.txt file included. | ||
|
||
#pragma once | ||
|
||
// MPark.Variant | ||
// | ||
// Copyright Michael Park, 2015-2017 | ||
// | ||
// Distributed under the Boost Software License, Version 1.0. | ||
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) | ||
|
||
#include <cstddef> | ||
|
||
namespace std | ||
{ | ||
struct in_place_t | ||
{ | ||
explicit in_place_t() = default; | ||
}; | ||
|
||
template <std::size_t I> | ||
struct in_place_index_t | ||
{ | ||
explicit in_place_index_t() = default; | ||
}; | ||
|
||
template <typename T> | ||
struct in_place_type_t | ||
{ | ||
explicit in_place_type_t() = default; | ||
}; | ||
|
||
constexpr in_place_t in_place{}; | ||
|
||
template <std::size_t I> | ||
constexpr in_place_index_t<I> in_place_index{}; | ||
|
||
template <typename T> | ||
constexpr in_place_type_t<T> in_place_type{}; | ||
|
||
} // namespace std |
Oops, something went wrong.