From 3683b43242c6f8a15baa58fe23c72d2b33b77bea Mon Sep 17 00:00:00 2001 From: joaquintides Date: Fri, 14 Oct 2022 13:52:37 +0200 Subject: [PATCH] [skip CI] editorial --- include/boost/unordered/detail/foa.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index 5c448cf9..b73a64a2 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -704,7 +704,7 @@ struct table_arrays { using alloc_traits=boost::allocator_traits; - /* n/N+1 == ceil(n+1/N) (extra +1 for the sentinel) */ + /* n/N+1 == ceil((n+1)/N) (extra +1 for the sentinel) */ auto groups_size_index=size_policy::size_index(n/N+1); auto groups_size=size_policy::size(groups_size_index); table_arrays arrays{groups_size_index,groups_size-1,nullptr,nullptr};