From 6731076646b841b466a8c8b3c192b24cfab918e2 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 8 Dec 2025 12:02:33 -0500 Subject: [PATCH] chore: use `enum struct` instead of `enum class` in `slice_how`. Signed-off-by: Amlal El Mahrouss --- include/boost/buffers/buffer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/buffers/buffer.hpp b/include/boost/buffers/buffer.hpp index 52e054a..1a64ca2 100644 --- a/include/boost/buffers/buffer.hpp +++ b/include/boost/buffers/buffer.hpp @@ -143,7 +143,7 @@ struct slice_tag {}; overloads of `tag_invoke` for user-defined types which customize the slicing algorithms. */ -enum class slice_how +enum struct slice_how { /// Indicates that the front of the buffer sequence should be trimmed remove_prefix,