aboutsummaryrefslogtreecommitdiff
path: root/libcxx/include/tuple
diff options
context:
space:
mode:
authorNikolas Klauser <nikolasklauser@berlin.de>2022-08-13 22:33:12 +0200
committerNikolas Klauser <nikolasklauser@berlin.de>2022-12-23 15:42:13 +0100
commit841399a2188aaf244e83e3df7be66885ec905ede (patch)
tree0584ba9836530c245c45cf8537d4b26a1cdcffd4 /libcxx/include/tuple
parent0026874c8bd0616b520779b9fcfdb05e53ea4dca (diff)
downloadllvm-841399a2188aaf244e83e3df7be66885ec905ede.zip
llvm-841399a2188aaf244e83e3df7be66885ec905ede.tar.gz
llvm-841399a2188aaf244e83e3df7be66885ec905ede.tar.bz2
[libc++] Add custom clang-tidy checks
Reviewed By: #libc, ldionne Spies: jwakely, beanz, smeenai, cfe-commits, tschuett, avogelsgesang, Mordante, sstefan1, libcxx-commits, ldionne, mgorny, arichardson, miyuki Differential Revision: https://reviews.llvm.org/D131963
Diffstat (limited to 'libcxx/include/tuple')
-rw-r--r--libcxx/include/tuple2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/tuple b/libcxx/include/tuple
index a14d903..7149875 100644
--- a/libcxx/include/tuple
+++ b/libcxx/include/tuple
@@ -1397,7 +1397,7 @@ template <size_t _Nx>
inline _LIBCPP_INLINE_VISIBILITY
constexpr size_t __find_idx(size_t __i, const bool (&__matches)[_Nx]) {
return __i == _Nx ? __not_found :
- __find_idx_return(__i, __find_idx(__i + 1, __matches), __matches[__i]);
+ __find_detail::__find_idx_return(__i, __find_detail::__find_idx(__i + 1, __matches), __matches[__i]);
}
template <class _T1, class ..._Args>