mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
Merge pull request #898 from JordanMaples/dev/jomaples/remove_pragma_push_pop
Remove msvc < 1910 checks.
This commit is contained in:
commit
bf6e103dfd
@ -50,11 +50,6 @@
|
|||||||
#pragma warning(disable : 26465) // TODO: bug - suppression does not work on template functions
|
#pragma warning(disable : 26465) // TODO: bug - suppression does not work on template functions
|
||||||
#pragma warning(disable : 4996) // use of function or classes marked [[deprecated]]
|
#pragma warning(disable : 4996) // use of function or classes marked [[deprecated]]
|
||||||
|
|
||||||
#if _MSC_VER < 1910
|
|
||||||
#pragma push_macro("constexpr")
|
|
||||||
#define constexpr /*constexpr*/
|
|
||||||
|
|
||||||
#endif // _MSC_VER < 1910
|
|
||||||
#endif // _MSC_VER
|
#endif // _MSC_VER
|
||||||
|
|
||||||
#if defined(__GNUC__) || defined(__clang__)
|
#if defined(__GNUC__) || defined(__clang__)
|
||||||
@ -2252,11 +2247,6 @@ general_span_iterator<Span> operator+(typename general_span_iterator<Span>::diff
|
|||||||
} // namespace gsl
|
} // namespace gsl
|
||||||
|
|
||||||
#if defined(_MSC_VER) && !defined(__clang__)
|
#if defined(_MSC_VER) && !defined(__clang__)
|
||||||
#if _MSC_VER < 1910
|
|
||||||
|
|
||||||
#undef constexpr
|
|
||||||
#pragma pop_macro("constexpr")
|
|
||||||
#endif // _MSC_VER < 1910
|
|
||||||
|
|
||||||
#pragma warning(pop)
|
#pragma warning(pop)
|
||||||
|
|
||||||
|
@ -25,12 +25,6 @@
|
|||||||
#include <system_error> // for hash
|
#include <system_error> // for hash
|
||||||
#include <type_traits> // for enable_if_t, is_convertible, is_assignable
|
#include <type_traits> // for enable_if_t, is_convertible, is_assignable
|
||||||
|
|
||||||
#if defined(_MSC_VER) && _MSC_VER < 1910 && !defined(__clang__)
|
|
||||||
#pragma push_macro("constexpr")
|
|
||||||
#define constexpr /*constexpr*/
|
|
||||||
|
|
||||||
#endif // defined(_MSC_VER) && _MSC_VER < 1910
|
|
||||||
|
|
||||||
namespace gsl
|
namespace gsl
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -291,11 +285,4 @@ struct hash<gsl::strict_not_null<T>>
|
|||||||
|
|
||||||
} // namespace std
|
} // namespace std
|
||||||
|
|
||||||
#if defined(_MSC_VER) && _MSC_VER < 1910 && !defined(__clang__)
|
|
||||||
|
|
||||||
#undef constexpr
|
|
||||||
#pragma pop_macro("constexpr")
|
|
||||||
|
|
||||||
#endif // defined(_MSC_VER) && _MSC_VER < 1910 && !defined(__clang__)
|
|
||||||
|
|
||||||
#endif // GSL_POINTERS_H
|
#endif // GSL_POINTERS_H
|
||||||
|
Loading…
Reference in New Issue
Block a user