summaryrefslogtreecommitdiff
path: root/src/ssl/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ssl/internal.h')
-rw-r--r--src/ssl/internal.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/ssl/internal.h b/src/ssl/internal.h
index 8f68fc5e..0087e7f7 100644
--- a/src/ssl/internal.h
+++ b/src/ssl/internal.h
@@ -245,14 +245,6 @@ UniquePtr<T> MakeUnique(Args &&... args) {
{ abort(); }
#endif
-// CONSTEXPR_ARRAY works around a VS 2015 bug where ranged for loops don't work
-// on constexpr arrays.
-#if defined(_MSC_VER) && !defined(__clang__) && _MSC_VER < 1910
-#define CONSTEXPR_ARRAY const
-#else
-#define CONSTEXPR_ARRAY constexpr
-#endif
-
// Array<T> is an owning array of elements of |T|.
template <typename T>
class Array {