From 781894369eb7d25e88463b0e0a2f24cdf9a9f7af Mon Sep 17 00:00:00 2001 From: Shai Szulanski Date: Wed, 15 Feb 2023 14:27:52 -0800 Subject: [PATCH] Fix typo Reviewed By: thedavekwon Differential Revision: D43325867 fbshipit-source-id: f01cc227601545ff96a420357011e9c1a270efe0 --- third-party/thrift/src/thrift/compiler/lib/const_util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third-party/thrift/src/thrift/compiler/lib/const_util.h b/third-party/thrift/src/thrift/compiler/lib/const_util.h index 8d9b1b7fa7023..1d36db07b0f2d 100644 --- a/third-party/thrift/src/thrift/compiler/lib/const_util.h +++ b/third-party/thrift/src/thrift/compiler/lib/const_util.h @@ -78,7 +78,7 @@ folly::void_t hydrate_const( typename T::key_type key; hydrate_const(key, *pair.first); typename T::mapped_type value; - hydrate_const(key, *pair.second); + hydrate_const(value, *pair.second); out.emplace(std::move(key), std::move(value)); } }