View Issue Details

IDProjectCategoryView StatusLast Update
0025473CommunityOCCT:Releasepublic2016-08-29 16:37
Reportermach22 Assigned Tobugmaster  
PrioritynormalSeverityminor 
Status closedResolutionno change required 
PlatformWindowsOSVC++ 2013 
Product Version6.8.0 
Summary0025473: problem compiling OCCT with tbb30_018oss
DescriptionI have build the OCCT with vc12 and 32bit I report an error on the file tbb_exception.h as std::copy_exception is not available with the new c++ compiler and I have changed it with std::make_exception_ptr

I have changed this line:

tbb_exception_ptr ( const captured_exception& src ) : my_ptr(std::copy_exception(src)) {}

with this:

tbb_exception_ptr ( const captured_exception& src ) : my_ptr(std::make_exception_ptr(src)) {}


You cold update the TBB library to the newer one?
TagsNo tags attached.
Test case number

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2014-11-13 01:42 mach22 New Issue
2014-11-13 01:42 mach22 Assigned To => bugmaster
2016-08-29 16:37 bugmaster Status new => closed
2016-08-29 16:37 bugmaster Resolution open => no change required