Make CCrashHandler getters/setters inline

These could be just inline.
This commit is contained in:
Kawe Mazidjatari 2023-06-19 01:19:47 +02:00
parent 2ae1f88311
commit 97a6b8b5cc

View File

@ -22,14 +22,14 @@ public:
void Start();
void End();
void Lock() const { m_Mutex.lock(); };
void Unlock() const { m_Mutex.unlock(); };
inline void Lock() const { m_Mutex.lock(); };
inline void Unlock() const { m_Mutex.unlock(); };
void SetState(bool bState) { m_bCallState = bState; };
bool GetState() const { return m_bCallState; };
inline void SetState(bool bState) { m_bCallState = bState; };
inline bool GetState() const { return m_bCallState; };
bool IsValid() const { return m_hExceptionHandler != nullptr; };
bool Handled() const { return m_bExceptionHandled; };
inline bool IsValid() const { return m_hExceptionHandler != nullptr; };
inline bool Handled() const { return m_bExceptionHandled; };
//-------------------------------------------------------------------------
// Formatters: