Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Reviewed By: thedavekwon

Differential Revision: D43325867

fbshipit-source-id: f01cc227601545ff96a420357011e9c1a270efe0
  • Loading branch information
iahs authored and facebook-github-bot committed Feb 15, 2023
1 parent 0a140b9 commit 7818943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third-party/thrift/src/thrift/compiler/lib/const_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ folly::void_t<typename T::mapped_type> 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));
}
}
Expand Down

0 comments on commit 7818943

Please sign in to comment.