From 6bdf1ba2442580d028b66b9dd4fb0b15309fb9dc Mon Sep 17 00:00:00 2001 From: Daniel James Date: Wed, 19 Apr 2017 09:46:15 +0100 Subject: [PATCH] Fix a comment --- include/boost/unordered/detail/implementation.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/unordered/detail/implementation.hpp b/include/boost/unordered/detail/implementation.hpp index 0d2e4a1b..3b4c3a47 100644 --- a/include/boost/unordered/detail/implementation.hpp +++ b/include/boost/unordered/detail/implementation.hpp @@ -61,9 +61,9 @@ // Unless documented elsewhere these configuration macros should be considered // an implementation detail, I'll try not to break them, but you never know. -// BOOST_UNORDERED_EMPLACE_LIMIT = The maximum number of parameters in emplace -// (not including things like hints). Don't set it to a lower value, as that -// might break something. +// BOOST_UNORDERED_EMPLACE_LIMIT = The maximum number of parameters + 1 in +// emplace (not including things like hints). Don't set it to a lower value, as +// that might break something. #if !defined BOOST_UNORDERED_EMPLACE_LIMIT #define BOOST_UNORDERED_EMPLACE_LIMIT 11