id summary reporter owner description type status milestone component version severity resolution keywords cc 8665 Unreachable code warnings in variant.hpp - msvc hvemha@… ebf "This code produces C4702 warnings when compiled with warning level 4 and optimization enabled (/W4 and /O2). Tested with both VC10 and VC11. {{{ #include ""boost/variant/variant.hpp"" int main() { boost::variant< int, double> a, b; if ( a < b ) { return 1; } return 0; } }}} d:\development\include\boost\variant\variant.hpp(353) : warning C4702: unreachable code d:\development\include\boost\variant\variant.hpp(353) : warning C4702: unreachable code d:\development\include\boost\variant\variant.hpp(1017) : warning C4702: unreachable code d:\development\include\boost\variant\variant.hpp(1017) : warning C4702: unreachable code" Bugs closed To Be Determined variant Boost 1.53.0 Problem fixed antoshkka@…