From 945c87c2346070e6b382a4d7f93199fd9b9a55bc Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Thu, 10 Feb 2022 17:15:10 +0300 Subject: [PATCH] [indexer] Store 7 bool flags in bits (potentially save 6 bytes per Feature). Signed-off-by: Viktor Govako --- indexer/feature.hpp | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/indexer/feature.hpp b/indexer/feature.hpp index b3672ec992..0a23bec9bd 100644 --- a/indexer/feature.hpp +++ b/indexer/feature.hpp @@ -190,14 +190,15 @@ public: private: struct ParsedFlags { - bool m_types = false; - bool m_common = false; - bool m_header2 = false; - bool m_points = false; - bool m_triangles = false; - bool m_metadata = false; - bool m_metaIds = false; + bool m_types : 1; + bool m_common : 1; + bool m_header2 : 1; + bool m_points : 1; + bool m_triangles : 1; + bool m_metadata : 1; + bool m_metaIds : 1; + ParsedFlags() { Reset(); } void Reset() { m_types = m_common = m_header2 = m_points = m_triangles = m_metadata = m_metaIds = false;