mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-06-28 22:12:40 +02:00
ncm: fix destructor availability
This commit is contained in:
parent
33ae401bc8
commit
dc52a32285
@ -40,7 +40,6 @@ namespace ams::ncm {
|
||||
}
|
||||
public:
|
||||
HostContentStorageImpl(RegisteredHostContent *registered_content) : registered_content(registered_content), disabled(false) { /* ... */ }
|
||||
~HostContentStorageImpl();
|
||||
public:
|
||||
/* Actual commands. */
|
||||
virtual Result GeneratePlaceHolderId(sf::Out<PlaceHolderId> out);
|
||||
|
@ -41,6 +41,10 @@ namespace ams::ncm {
|
||||
}
|
||||
};
|
||||
|
||||
RegisteredHostContent::~RegisteredHostContent() {
|
||||
/* ... */
|
||||
}
|
||||
|
||||
Result RegisteredHostContent::RegisterPath(const ncm::ContentId &content_id, const ncm::Path &path) {
|
||||
std::scoped_lock lk(this->mutex);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user