id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 1415,Warnings need suppression in Boost.Test,Paul A. Bristow,Gennadiy Rozental,"Using #include for various BOOST_CHECKs produces a blizzard of warnings at MSVC level 4. I have added this to my .cpp file #if defined (_MSC_VER) # pragma warning(disable : 4310) // cast truncates constant value # pragma warning(disable : 4512) // assignment operator could not be generated # pragma warning(disable : 4702) // unreachable code #endif But it would be better to suppress these 'at source' with push'n'pops in individual modules? # pragma warning(push) # pragma warning(pop) Thanks. ",Feature Requests,closed,To Be Determined,test,Boost 1.34.1,Optimization,worksforme,test warning suppression,