Changes between Initial Version and Version 1 of Ticket #9965
- Timestamp:
- May 18, 2014, 6:45:40 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9965
- Property Owner set to
- Property Component None → test
-
Ticket #9965 – Description
initial v1 1 1 test\impl\execution_monitor.ipp causes compilation failures from MSVC 10.0 because of this function: 2 2 3 4 {{{ 3 5 int BOOST_TEST_CALL_DECL 4 6 assert_reporting_function( int reportType, char* userMessage, int* ) … … 18 20 } // assert_reporting_function 19 21 22 }}} 23 20 24 The MSVC compiler gives a warning that there is unreachable code (the lines that say "return 1;") and then because it has been told to treat warnings as errors, the compilation fails.