diff options
author | Jose Fonseca <[email protected]> | 2018-09-07 13:27:47 +0100 |
---|---|---|
committer | Jose Fonseca <[email protected]> | 2018-09-10 10:10:16 +0100 |
commit | 52ca32121bc99d61cc30077fe37f85bdb4c47659 (patch) | |
tree | 894d4df2931b255fee1cfba3ba8066a3da9c2e9d /src | |
parent | d5f934522d6ae30bbb1b5320309aa29eb720008f (diff) |
Require Visual Studio 2015.
We no longer need or use Visual Studio 2013.
https://ci.appveyor.com/project/jrfonseca/mesa/build/52
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/util/macros.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/util/macros.h b/src/util/macros.h index fb522ee3d3e..c47bbb6dfcd 100644 --- a/src/util/macros.h +++ b/src/util/macros.h @@ -198,9 +198,7 @@ do { \ # define HAS_TRIVIAL_DESTRUCTOR(T) __has_trivial_destructor(T) # endif # elif defined(_MSC_VER) && !defined(__INTEL_COMPILER) -# if _MSC_VER >= 1800 -# define HAS_TRIVIAL_DESTRUCTOR(T) __has_trivial_destructor(T) -# endif +# define HAS_TRIVIAL_DESTRUCTOR(T) __has_trivial_destructor(T) # endif # ifndef HAS_TRIVIAL_DESTRUCTOR /* It's always safe (if inefficient) to assume that a |