From 366c265ab2ac92dfde13f0118109cef459ea7e8c Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 27 Jan 2021 23:41:35 -0800 Subject: [PATCH] dd: fix include, note gcc-11 TODO --- .../libstratosphere/include/stratosphere/dd/dd_types.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/libstratosphere/include/stratosphere/dd/dd_types.hpp b/libraries/libstratosphere/include/stratosphere/dd/dd_types.hpp index 2d1587296..467708841 100644 --- a/libraries/libstratosphere/include/stratosphere/dd/dd_types.hpp +++ b/libraries/libstratosphere/include/stratosphere/dd/dd_types.hpp @@ -13,15 +13,15 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - #pragma once #include -#include namespace ams::dd { using ProcessHandle = ::Handle; + /* TODO gcc-11: using MemoryPermission = os::MemoryPermission; using enum os::MemoryPermission; */ + enum MemoryPermission { MemoryPermission_None = 0, MemoryPermission_ReadOnly = (1u << 0),