mirror of
https://github.com/boostorg/log.git
synced 2026-01-19 04:22:09 +00:00
Disabled MSVC warnings about implicitly defined ctor/assignment being deleted.
Closes https://github.com/boostorg/log/issues/247. Closes https://github.com/boostorg/log/pull/248.
This commit is contained in:
@@ -42,6 +42,10 @@
|
||||
#pragma warning(disable: 4456)
|
||||
// declaration of 'A' hides global declaration
|
||||
#pragma warning(disable: 4459)
|
||||
// copy constructor was implicitly defined as deleted because a base class copy constructor is inaccessible or deleted
|
||||
#pragma warning(disable: 4625)
|
||||
// assignment operator was implicitly defined as deleted because a base class assignment operator is inaccessible or deleted
|
||||
#pragma warning(disable: 4626)
|
||||
// 'X': This function or variable may be unsafe. Consider using Y instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
|
||||
#pragma warning(disable: 4996)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user