mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 17:10:47 +00:00
Compile fixes
This commit is contained in:
@@ -732,6 +732,11 @@ passed nothing will happen.
|
||||
:param ``list`` of ``str`` options: The new options for the combo box.
|
||||
)");
|
||||
virtual void SetComboOptions(QWidget *combo, const rdcarray<rdcstr> &options) = 0;
|
||||
|
||||
protected:
|
||||
DOCUMENT("");
|
||||
IMiniQtHelper() = default;
|
||||
~IMiniQtHelper() = default;
|
||||
};
|
||||
|
||||
DECLARE_REFLECTION_STRUCT(IMiniQtHelper);
|
||||
|
||||
@@ -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