mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-06-26 21:12:41 +02:00
shared_from_this requires public inheritance
This commit is contained in:
parent
f13d2cb6c9
commit
6f926ea72b
@ -101,7 +101,7 @@ namespace ams::fssrv::impl {
|
||||
};
|
||||
};
|
||||
|
||||
class FileSystemInterfaceAdapter final : std::enable_shared_from_this<FileSystemInterfaceAdapter>, public ams::sf::IServiceObject {
|
||||
class FileSystemInterfaceAdapter final : public std::enable_shared_from_this<FileSystemInterfaceAdapter>, public ams::sf::IServiceObject {
|
||||
NON_COPYABLE(FileSystemInterfaceAdapter);
|
||||
public:
|
||||
enum class CommandId {
|
||||
|
Loading…
Reference in New Issue
Block a user