From fb315252b39b37f9e502854e66a4e4b12e1e0cd7 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Tue, 25 Oct 2022 19:53:18 +0200 Subject: [PATCH] added missing BOOST_FORCEINLINE --- include/boost/unordered/unordered_flat_map.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/unordered_flat_map.hpp b/include/boost/unordered/unordered_flat_map.hpp index 5d4fc28f..dd464eb2 100644 --- a/include/boost/unordered/unordered_flat_map.hpp +++ b/include/boost/unordered/unordered_flat_map.hpp @@ -232,7 +232,7 @@ namespace boost { return table_.insert(std::forward(value)); } - std::pair insert(init_type&& value) + BOOST_FORCEINLINE std::pair insert(init_type&& value) { return table_.insert(std::move(value)); }