mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-12 13:00:32 +00:00
Compile fixes
This commit is contained in:
@@ -64,6 +64,7 @@ struct ExceptionHandler
|
||||
this->~ExceptionHandler();
|
||||
m_storage = o.m_storage;
|
||||
m_storage->m_ref++;
|
||||
return *this;
|
||||
}
|
||||
ExceptionData &data() { return m_storage->data; }
|
||||
const ExceptionData &data() const { return m_storage->data; }
|
||||
@@ -74,7 +75,7 @@ private:
|
||||
{
|
||||
ExceptionData data;
|
||||
bool valid = true;
|
||||
std::atomic_int32_t m_ref;
|
||||
std::atomic<int32_t> m_ref;
|
||||
};
|
||||
Storage *m_storage = NULL;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user