summaryrefslogtreecommitdiff
path: root/src/common/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar Morph2021-10-31 21:20:51 -0400
committerGravatar Morph2021-11-02 15:20:35 -0400
commita41e9e93dd0786dc0fbdbe0fe61b7294490129ef (patch)
tree86cfb6b0832c619cc1617e2bd50b2b62844b6331 /src/common/CMakeLists.txt
parentMerge pull request #7227 from vonchenplus/fix_memory_leak_v2 (diff)
downloadyuzu-a41e9e93dd0786dc0fbdbe0fe61b7294490129ef.tar.gz
yuzu-a41e9e93dd0786dc0fbdbe0fe61b7294490129ef.tar.xz
yuzu-a41e9e93dd0786dc0fbdbe0fe61b7294490129ef.zip
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.txt1
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
55 dynamic_library.h 55 dynamic_library.h
56 error.cpp 56 error.cpp
57 error.h 57 error.h
58 expected.h
58 fiber.cpp 59 fiber.cpp
59 fiber.h 60 fiber.h
60 fs/file.cpp 61 fs/file.cpp