Changes between Initial Version and Version 2 of Ticket #9266
- Timestamp:
- Oct 18, 2013, 6:00:43 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9266
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #9266 – Description
initial v2 1 1 I got the crash using the following full code (using boost trunk r86347 ): 2 2 3 4 {{{ 3 5 #include<boost/thread/synchronized_value.hpp> 4 6 5 7 boost::synchronized_value<int> foo; 8 }}} 9 6 10 7 11 8 12 Which produce the following error (ignore the file name, it contains exactly the code above): 9 13 14 15 {{{ 10 16 1> clock.cpp 11 17 1>e:\projects\sdk\boost\boost\include\boost-1_55\boost\thread\synchronized_value.hpp(401): fatal error C1001: An internal error has occurred in the compiler. … … 16 22 1> e:\projects\games\netrush\netrush_projects\projects\netrush\system\core\clock.hpp(120) : see reference to class template instantiation 'boost::synchronized_value<int,boost::mutex>' being compiled 17 23 Build has been canceled. 24 }}} 25 18 26 19 27