From cefe5965be9f901a6cd5dfd7d63af6bcc4b7f647 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Wed, 28 Sep 2022 19:52:22 +0200 Subject: [PATCH] micro-optimized table_iterator ctor to see if it impacts performance --- 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 822b49ac..07504eb0 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -491,7 +491,7 @@ private: } } - unsigned char *pc=nullptr; + unsigned char *pc; Value *p=nullptr; };