From 6289e261eec64e8cece93c26adc407713297ff13 Mon Sep 17 00:00:00 2001 From: Florin Iucha Date: Wed, 27 May 2020 16:13:21 -0400 Subject: [PATCH] Indicate that vectors are a contiguous sequence --- include/fmt/core.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/fmt/core.h b/include/fmt/core.h index b2236b33..2d3b499f 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -1718,6 +1718,9 @@ template struct is_contiguous : std::false_type {}; template struct is_contiguous> : std::true_type {}; +template +struct is_contiguous> : std::true_type {}; + template struct is_contiguous> : std::true_type {};