Skip to content

Commit 94747e5

Browse files
huixie90ldionne
andcommitted
Apply suggestions from code review
Co-authored-by: Louis Dionne <[email protected]>
1 parent d9ac2cb commit 94747e5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libcxx/include/__iterator/product_iterator.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef _LIBCPP___PRODUCT_ITERATOR_H
10-
#define _LIBCPP___PRODUCT_ITERATOR_H
9+
#ifndef _LIBCPP___ITERATOR_PRODUCT_ITERATOR_H
10+
#define _LIBCPP___ITERATOR_PRODUCT_ITERATOR_H
1111

1212
// Product iterators are iterators that contain two or more underlying iterators.
1313
//
@@ -66,4 +66,4 @@ using __product_iterator_element_t _LIBCPP_NODEBUG =
6666

6767
_LIBCPP_END_NAMESPACE_STD
6868

69-
#endif // _LIBCPP___PRODUCT_ITERATOR_H
69+
#endif // _LIBCPP___ITERATOR_PRODUCT_ITERATOR_H

libcxx/include/__ranges/zip_view.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ class zip_view<_Views...>::__iterator : public __zip_view_iterator_category_base
252252

253253
friend class zip_view<_Views...>;
254254

255-
using __is_zip_view_iterator _LIBCPP_NODEBUG = true_type;
255+
static constexpr bool __is_zip_view_iterator = true;
256256

257257
friend struct __product_iterator_traits<__iterator>;
258258

0 commit comments

Comments
 (0)