diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-10-31 21:20:51 -0400 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-11-02 15:20:35 -0400 |
commit | a41e9e93dd0786dc0fbdbe0fe61b7294490129ef (patch) | |
tree | 86cfb6b0832c619cc1617e2bd50b2b62844b6331 /src/common/CMakeLists.txt | |
parent | b118fa8698dbe0e2b6e663c1c37a7eac03422905 (diff) |
common: Implement a subset of P0323 (std::expected)
This implementation is based on and is a subset of the proposed implementation of std::expected
https://github.com/TartanLlama/expected/blob/master/include/tl/expected.hpp
Diffstat (limited to 'src/common/CMakeLists.txt')
-rw-r--r-- | src/common/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index cb5c0f326..23d43a394 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -55,6 +55,7 @@ add_library(common STATIC dynamic_library.h error.cpp error.h + expected.h fiber.cpp fiber.h fs/file.cpp |