ncm: update for new add on content/attr changes
This commit is contained in:
@@ -32,4 +32,6 @@ namespace ams::lr {
|
||||
|
||||
R_DEFINE_ERROR_RESULT(TooManyRegisteredPaths, 90);
|
||||
|
||||
R_DEFINE_ERROR_RESULT(InvalidPath, 140);
|
||||
|
||||
}
|
||||
|
||||
@@ -134,6 +134,15 @@ namespace ams::util {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
template<typename F>
|
||||
void RemoveIf(F f) {
|
||||
for (size_t i = 0; i < N; ++i) {
|
||||
if (m_keys[i] && f(m_keys[i].value(), GetReference(m_values[i]))) {
|
||||
this->FreeEntry(i);
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user