[libcxx-commits] [PATCH] D129503: rename variables to use the snake case instead of camel case

Hui via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Jul 11 10:29:52 PDT 2022


huixie90 created this revision.
Herald added a project: All.
huixie90 requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added a reviewer: libc++.

For some reason the pre-commit CI of https://reviews.llvm.org/D129233 was all green so I didn't spot this
https://reviews.llvm.org/B174525


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D129503

Files:
  libcxx/include/__algorithm/set_intersection.h


Index: libcxx/include/__algorithm/set_intersection.h
===================================================================
--- libcxx/include/__algorithm/set_intersection.h
+++ libcxx/include/__algorithm/set_intersection.h
@@ -30,8 +30,8 @@
 
   // need a constructor as C++03 aggregate init is hard
   _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_AFTER_CXX17
-  __set_intersection_result(_InIter1&& __inIter1, _InIter2&& __inIter2, _OutIter&& __outIter)
-      : in1(std::move(__inIter1)), in2(std::move(__inIter2)), out(std::move(__outIter)) {}
+  __set_intersection_result(_InIter1&& __in_iter1, _InIter2&& __in_iter2, _OutIter&& __out_iter)
+      : in1(std::move(__in_iter1)), in2(std::move(__in_iter2)), out(std::move(__out_iter)) {}
 };
 
 template < class _IterOper, class _Compare, class _InIter1, class _Sent1, class _InIter2, class _Sent2, class _OutIter>


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D129503.443684.patch
Type: text/x-patch
Size: 860 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220711/7f98542c/attachment.bin>


More information about the libcxx-commits mailing list