From b8d4df2b5c33407af7877741973e6912ef5c4b27 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Sat, 15 Oct 2022 11:07:48 +0200 Subject: [PATCH] stylistic --- 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 4603e9eb..0ba23751 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -1436,7 +1436,7 @@ private: typename T, typename std::enable_if::value>::type* =nullptr > - static inline auto value_from(T&& x)->decltype(std::forward(x)) + static inline T&& value_from(T&& x) { return std::forward(x); }