mirror of
https://github.com/boostorg/core.git
synced 2025-07-29 20:37:22 +02:00
Disable C4512 in uncaught_exceptions(_np).cpp
This commit is contained in:
@ -18,6 +18,10 @@
|
||||
#include <boost/core/uncaught_exceptions.hpp>
|
||||
#include <boost/core/lightweight_test.hpp>
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
# pragma warning(disable: 4512) // assignment operator could not be generated
|
||||
#endif
|
||||
|
||||
struct my_exception {};
|
||||
|
||||
class exception_watcher
|
||||
|
@ -20,6 +20,10 @@
|
||||
|
||||
#include <boost/core/lightweight_test.hpp>
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
# pragma warning(disable: 4512) // assignment operator could not be generated
|
||||
#endif
|
||||
|
||||
struct my_exception1 {};
|
||||
struct my_exception2 {};
|
||||
|
||||
|
Reference in New Issue
Block a user