[libcxx-commits] [PATCH] D129503: [libc++] Rename variables to use the snake case instead of camel case
Mark de Wever via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Jul 11 12:57:11 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rGe90e7e70ef13: [libc++] Rename variables to use the snake case instead of camel case (authored by huixie90, committed by Mordante).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D129503/new/
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.443728.patch
Type: text/x-patch
Size: 860 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220711/a29443d0/attachment.bin>
More information about the libcxx-commits
mailing list