mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-10 07:06:34 +00:00
shared_from_this requires public inheritance
This commit is contained in:
parent
746dbfe018
commit
b08a97d883
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
NON_COPYABLE(FileSystemInterfaceAdapter);
|
||||||
public:
|
public:
|
||||||
enum class CommandId {
|
enum class CommandId {
|
||||||
|
|
Loading…
Reference in a new issue