diff options
author | Abseil Team <absl-team@google.com> | 2022-06-02 07:53:06 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2022-06-02 07:53:42 -0700 |
commit | 6285deef8ccbe546798bc248407bec4d8fe528f1 (patch) | |
tree | 93778df3df4c52761ac38ffca8866b2ec21fb7a1 /absl/container | |
parent | 2617970857c46e6ec971865d54f00445c260f682 (diff) |
Fixed typo in a comment.
PiperOrigin-RevId: 452537510
Change-Id: I7d2a19d1206aa08fce131bacda461fdefebe8713
Diffstat (limited to 'absl/container')
-rw-r--r-- | absl/container/internal/container_memory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/container/internal/container_memory.h b/absl/container/internal/container_memory.h index df492236..94185c6e 100644 --- a/absl/container/internal/container_memory.h +++ b/absl/container/internal/container_memory.h @@ -174,7 +174,7 @@ decltype(std::declval<F>()(std::declval<T>())) WithConstructed( // // 2. auto a = PairArgs(args...); // std::pair<F, S> p(std::piecewise_construct, -// std::move(p.first), std::move(p.second)); +// std::move(a.first), std::move(a.second)); inline std::pair<std::tuple<>, std::tuple<>> PairArgs() { return {}; } template <class F, class S> std::pair<std::tuple<F&&>, std::tuple<S&&>> PairArgs(F&& f, S&& s) { |