catch2/include
Vadim Zeitlin b7f7054828 Fix harmless but annoying MSVC warnings.
Suppress

catch.hpp(1760) : warning C4512: 'Catch::TagExtracter' : assignment operator could not be generated
catch.hpp(1864) : warning C4512: 'Catch::TagExpressionParser' : assignment operator could not be generated

warnings given by MSVC 9 (and probably other version too) compiler with /W4 switch.

The warnings are given because the compiler can't synthesize the assignment
operators for the classes with members of reference type, so simply explicitly
declare (without defining) these operators ourselves to suppress them.
2012-10-31 19:17:31 +01:00
..
internal Fix harmless but annoying MSVC warnings. 2012-10-31 19:17:31 +01:00
reporters Added AllOf and AnyOf matchers 2012-10-12 07:58:17 +01:00
catch_runner.hpp Fixed alternate stream bugs 2012-09-26 18:36:58 +01:00
catch_with_main.hpp Builds almost completely cleanly with -WEverything in LLVM 2012-08-13 07:46:10 +01:00
catch.hpp Added SCOPED_CAPTURE 2012-10-04 08:14:48 +01:00