mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-02-08 05:50:07 -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;
|
//using EmberReport::m_ErrorReport;
|
||||||
public:
|
public:
|
||||||
RendererBase();
|
RendererBase();
|
||||||
virtual ~RendererBase() { }
|
virtual ~RendererBase() __TBB_NOEXCEPT(false) { }
|
||||||
|
|
||||||
//Non-virtual processing functions.
|
//Non-virtual processing functions.
|
||||||
void ChangeVal(std::function<void(void)> func, eProcessAction action);
|
void ChangeVal(std::function<void(void)> func, eProcessAction action);
|
||||||
|
@ -90,7 +90,7 @@ public:
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Virtual destructor needed for virtual classes.
|
/// Virtual destructor needed for virtual classes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
virtual ~EmberReport() { }
|
virtual ~EmberReport() __TBB_NOEXCEPT(false) { }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Write the entire error report as a single string to the console.
|
/// Write the entire error report as a single string to the console.
|
||||||
|
Loading…
Reference in New Issue
Block a user