From 1f87ef73f1477e8adafa8b10ccee042897612a20 Mon Sep 17 00:00:00 2001 From: Gary Furnish Date: Fri, 2 Jun 2017 09:45:42 -0600 Subject: [PATCH] Fix cstddef include in wrong place. (#520) --- include/gsl/gsl_byte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/gsl/gsl_byte b/include/gsl/gsl_byte index 516ecfa..e8c56b5 100644 --- a/include/gsl/gsl_byte +++ b/include/gsl/gsl_byte @@ -55,6 +55,7 @@ #if defined(__cplusplus) && (__cplusplus >= 201703L) #define GSL_USE_STD_BYTE 1 +#include #else // defined(__cplusplus) && (__cplusplus >= 201703L) @@ -68,7 +69,6 @@ namespace gsl { #if GSL_USE_STD_BYTE -#include using std::byte; using std::to_integer;