From 877f1a4d5d42ac536e8e5aa4c688764f4a4b0602 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Tue, 21 Sep 2021 10:19:52 +0100 Subject: [PATCH] Replaced std::size_t with size_t --- include/etl/utility.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/etl/utility.h b/include/etl/utility.h index 0cb11683..95fa8475 100644 --- a/include/etl/utility.h +++ b/include/etl/utility.h @@ -426,13 +426,13 @@ namespace etl #endif //************************* - template struct in_place_index_t + template struct in_place_index_t { explicit ETL_CONSTEXPR in_place_index_t() {} }; #if ETL_CPP17_SUPPORTED - template + template inline constexpr in_place_index_t in_place_index; #endif }