mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-24 21:16:56 +00:00
check if _SECURE_SCL is defined not equal to 0
This commit is contained in:
parent
cef1e4354b
commit
cd0b3f9695
@ -324,7 +324,7 @@ inline typename Container::value_type* get_data(Container& c) {
|
|||||||
return c.data();
|
return c.data();
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _SECURE_SCL
|
#if defined(_SECURE_SCL) && _SECURE_SCL
|
||||||
// Make a checked iterator to avoid MSVC warnings.
|
// Make a checked iterator to avoid MSVC warnings.
|
||||||
template <typename T> using checked_ptr = stdext::checked_array_iterator<T*>;
|
template <typename T> using checked_ptr = stdext::checked_array_iterator<T*>;
|
||||||
template <typename T> checked_ptr<T> make_checked(T* p, std::size_t size) {
|
template <typename T> checked_ptr<T> make_checked(T* p, std::size_t size) {
|
||||||
|
Loading…
Reference in New Issue
Block a user