ksys/phys: Finish detail::ModelSkeleton

This commit is contained in:
Léo Lam
2022-04-18 22:31:43 +02:00
parent bcaacf0700
commit 538e86884c
5 changed files with 111 additions and 10 deletions
@@ -198,7 +198,7 @@ struct hkResult {
HK_FORCE_INLINE bool operator==(hkResultEnum e) const { return m_enum == e; }
HK_FORCE_INLINE bool operator!=(hkResultEnum e) const { return m_enum != e; }
HK_FORCE_INLINE bool isSuccess() const { return m_enum ^ HK_FAILURE; }
HK_FORCE_INLINE bool isSuccess() const { return m_enum == HK_SUCCESS; }
hkResultEnum m_enum;
};