Kernel: Remove obsolete SpinLockGuardAsMutex declaration

This commit is contained in:
2026-08-23 14:21:27 +03:00
parent 8eb572d038
commit cce6e417df
-4
View File
@@ -61,9 +61,6 @@ namespace Kernel
uint32_t m_lock_depth { 0 };
};
template<typename Lock>
class SpinLockGuardAsMutex;
template<typename Lock>
class SpinLockGuard
{
@@ -85,7 +82,6 @@ namespace Kernel
private:
Lock& m_lock;
InterruptState m_state;
friend class SpinLockGuardAsMutex<Lock>;
};
}