Merge pull request #10417 from liamwhite/check-state
k_memory_block_manager: remove auditing calls
This commit is contained in:
commit
4ee4fdf78c
|
@ -144,14 +144,10 @@ private:
|
|||
|
||||
class KScopedMemoryBlockManagerAuditor {
|
||||
public:
|
||||
explicit KScopedMemoryBlockManagerAuditor(KMemoryBlockManager* m) : m_manager(m) {
|
||||
ASSERT(m_manager->CheckState());
|
||||
}
|
||||
explicit KScopedMemoryBlockManagerAuditor(KMemoryBlockManager* m) : m_manager(m) {}
|
||||
explicit KScopedMemoryBlockManagerAuditor(KMemoryBlockManager& m)
|
||||
: KScopedMemoryBlockManagerAuditor(std::addressof(m)) {}
|
||||
~KScopedMemoryBlockManagerAuditor() {
|
||||
ASSERT(m_manager->CheckState());
|
||||
}
|
||||
~KScopedMemoryBlockManagerAuditor() = default;
|
||||
|
||||
private:
|
||||
KMemoryBlockManager* m_manager;
|
||||
|
|
Reference in New Issue