Fix compiler error due to tbb member having more restrictive exception filter

This commit is contained in:
Simon Detheridge 2015-01-14 09:47:15 +00:00
parent 3791853a80
commit 5ec065a66b
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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.