mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
turning off warning (#548)
using the GSL with MSVC 2017 causes the following warning" `'std::copy_n::_Unchecked_iterators::_Deprecate': Call to 'std::copy_n'` This patch removes this since the point of this code is to deal with this issue.
This commit is contained in:
parent
e249f861e3
commit
842344e94b
@ -28,6 +28,7 @@
|
|||||||
|
|
||||||
// turn off some warnings that are noisy about our Expects statements
|
// turn off some warnings that are noisy about our Expects statements
|
||||||
#pragma warning(disable : 4127) // conditional expression is constant
|
#pragma warning(disable : 4127) // conditional expression is constant
|
||||||
|
#pragma warning(disable : 4996) // unsafe use of std::copy_n
|
||||||
|
|
||||||
// blanket turn off warnings from CppCoreCheck for now
|
// blanket turn off warnings from CppCoreCheck for now
|
||||||
// so people aren't annoyed by them when running the tool.
|
// so people aren't annoyed by them when running the tool.
|
||||||
|
Loading…
Reference in New Issue
Block a user