From 03654bacf6b98976387628ee9a511a60f557635a Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Sun, 17 Jan 2021 15:03:51 -0800 Subject: [PATCH] sm, spl: update to use new sf semantics --- .../sf/impl/sf_impl_autogen_interface_macros.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libstratosphere/include/stratosphere/sf/impl/sf_impl_autogen_interface_macros.hpp b/libstratosphere/include/stratosphere/sf/impl/sf_impl_autogen_interface_macros.hpp index 587e59cc..0c53af70 100644 --- a/libstratosphere/include/stratosphere/sf/impl/sf_impl_autogen_interface_macros.hpp +++ b/libstratosphere/include/stratosphere/sf/impl/sf_impl_autogen_interface_macros.hpp @@ -122,9 +122,9 @@ namespace ams::sf::impl { template \ concept Is##CLASSNAME = CMD_MACRO(CLASSNAME, AMS_SF_IMPL_CHECK_CONCEPT_HELPER) true; - #define AMS_SF_DEFINE_INTERFACE_IMPL(BASECLASS, CLASSNAME, CMD_MACRO) \ - AMS_SF_IMPL_DEFINE_INTERFACE(::ams::sf::IServiceObject, CLASSNAME, CMD_MACRO) \ - AMS_SF_IMPL_DEFINE_CONCEPT(CLASSNAME, CMD_MACRO) \ + #define AMS_SF_DEFINE_INTERFACE_IMPL(BASECLASS, CLASSNAME, CMD_MACRO) \ + AMS_SF_IMPL_DEFINE_INTERFACE(BASECLASS, CLASSNAME, CMD_MACRO) \ + AMS_SF_IMPL_DEFINE_CONCEPT(CLASSNAME, CMD_MACRO) \ static_assert(Is##CLASSNAME); #define AMS_SF_METHOD_INFO_7(CLASSNAME, HANDLER, CMD_ID, RETURN, NAME, ARGS, ARGNAMES) \