diff options
author | Lioncash <mathew1800@gmail.com> | 2018-10-30 05:06:32 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-10-30 05:09:46 +0100 |
commit | 352b56367cc1b2190c3fc9357553f2cac3929d29 (patch) | |
tree | 484ea31d9a1644c5e9d43b678348bbfb15b7a5d8 | |
parent | global: Use std::optional instead of boost::optional (#1578) (diff) | |
download | yuzu-352b56367cc1b2190c3fc9357553f2cac3929d29.tar yuzu-352b56367cc1b2190c3fc9357553f2cac3929d29.tar.gz yuzu-352b56367cc1b2190c3fc9357553f2cac3929d29.tar.bz2 yuzu-352b56367cc1b2190c3fc9357553f2cac3929d29.tar.lz yuzu-352b56367cc1b2190c3fc9357553f2cac3929d29.tar.xz yuzu-352b56367cc1b2190c3fc9357553f2cac3929d29.tar.zst yuzu-352b56367cc1b2190c3fc9357553f2cac3929d29.zip |
-rw-r--r-- | src/core/file_sys/fsmitm_romfsbuild.h | 1 | ||||
-rw-r--r-- | src/core/hle/kernel/mutex.cpp | 2 | ||||
-rw-r--r-- | src/yuzu/debugger/wait_tree.h | 1 |
3 files changed, 0 insertions, 4 deletions
diff --git a/src/core/file_sys/fsmitm_romfsbuild.h b/src/core/file_sys/fsmitm_romfsbuild.h index 3d377b0af..a62502193 100644 --- a/src/core/file_sys/fsmitm_romfsbuild.h +++ b/src/core/file_sys/fsmitm_romfsbuild.h @@ -27,7 +27,6 @@ #include <map> #include <memory> #include <string> -#include <boost/detail/container_fwd.hpp> #include "common/common_types.h" #include "core/file_sys/vfs.h" diff --git a/src/core/hle/kernel/mutex.cpp b/src/core/hle/kernel/mutex.cpp index dd541ffcc..0743670ad 100644 --- a/src/core/hle/kernel/mutex.cpp +++ b/src/core/hle/kernel/mutex.cpp @@ -6,8 +6,6 @@ #include <utility> #include <vector> -#include <boost/range/algorithm_ext/erase.hpp> - #include "common/assert.h" #include "core/core.h" #include "core/hle/kernel/errors.h" diff --git a/src/yuzu/debugger/wait_tree.h b/src/yuzu/debugger/wait_tree.h index defbf734f..331f89885 100644 --- a/src/yuzu/debugger/wait_tree.h +++ b/src/yuzu/debugger/wait_tree.h @@ -11,7 +11,6 @@ #include <QAbstractItemModel> #include <QDockWidget> #include <QTreeView> -#include <boost/container/flat_set.hpp> #include "common/common_types.h" #include "core/hle/kernel/object.h" |