mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-02-01 10:30:08 -05:00
Fix compiler error due to tbb member having more restrictive exception filter
This commit is contained in:
parent
3791853a80
commit
5ec065a66b
@ -94,7 +94,7 @@ class EMBER_API RendererBase : public EmberReport
|
||||
//using EmberReport::m_ErrorReport;
|
||||
public:
|
||||
RendererBase();
|
||||
virtual ~RendererBase() { }
|
||||
virtual ~RendererBase() __TBB_NOEXCEPT(false) { }
|
||||
|
||||
//Non-virtual processing functions.
|
||||
void ChangeVal(std::function<void(void)> func, eProcessAction action);
|
||||
|
@ -90,7 +90,7 @@ public:
|
||||
/// <summary>
|
||||
/// Virtual destructor needed for virtual classes.
|
||||
/// </summary>
|
||||
virtual ~EmberReport() { }
|
||||
virtual ~EmberReport() __TBB_NOEXCEPT(false) { }
|
||||
|
||||
/// <summary>
|
||||
/// Write the entire error report as a single string to the console.
|
||||
|
Loading…
Reference in New Issue
Block a user