Hacktoberfest 2026: những issue maintainer đã đánh dấu cho tháng Mười, đang mở và phù hợp người mới. Xem issue Hacktoberfest

`transform_iterator` does not work with `std::sort` from libc++ 22

Đang mở
#97 0 bình luận 0 reaction 0 người được giao Xem trên GitHub

Chưa có ai nhận issue này.

Đánh giá

Độ khó
3/5
Thời gian dự kiến
1-2 ngày
Mức phù hợp với người mới
58/100
Loại issue
Lỗi
Độ rõ ràng
Khá rõ ràng
Mức độ hoạt động
Sôi nổi
Công nghệ
cpp
Lĩnh vực
tooling

Hướng nghiên cứu

Start with boost/iterator/transform_iterator.hpp and the repro.cpp example, then compare the transform_iterator behavior used by std::sort with the libc++ 22 diagnostic and the linked LLVM issue. Done means the provided C++17 example compiles successfully with libc++ 22 and sorts the wrapped values.

Do mô hình lập chỉ mục viết ra từ nội dung của issue.

Mô tả

If the comparator has a templated operator(), sorting through a boost::transform_iterator fails to compile with libc++ 22.

#include <algorithm>
#include <string>
#include <vector>
#include <boost/iterator/transform_iterator.hpp>

template <typename T> struct Wrapper { T item; };

struct Identity {
  Wrapper<std::string> &operator()(Wrapper<std::string> &w) const { return w; }
};

struct Cmp {
  template <typename T>
  bool operator()(const Wrapper<T> &a, const Wrapper<T> &b) const { return a.item < b.item; }
};

int main() {
  std::vector<Wrapper<std::string>> v{{"b"}, {"a"}};
  typedef boost::transform_iterator<Identity, std::vector<Wrapper<std::string>>::iterator> It;
  std::sort(It(v.begin()), It(v.end()), Cmp());
}
$ clang++ -std=c++17 -stdlib=libc++ -c repro.cpp
...
/usr/bin/../include/c++/v1/__algorithm/sift_down.h:55:7: error: no matching function for call to object of type
      'Cmp'
   55 |   if (__comp(__first[__child], __first[__start]))
      |       ^~~~~~
repro.cpp:14:8: note: candidate template ignored: could not match 'Wrapper' against 'operator_brackets_proxy'
   14 |   bool operator()(const Wrapper<T> &a, const Wrapper<T> &b) const { return a.item < b.item; }
      |        ^
...

See also https://github.com/llvm/llvm-project/issues/223290.

Ngôn ngữ chính
C++
Star
23
Fork
70
Chỉ số merge pull request
Không có pull request nào được merge trong 30 ngày

Hướng dẫn đóng góp

Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này

Bắt đầu từ đâu

  1. Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
  2. Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
  3. Fork repository và làm thay đổi trên một nhánh.
  4. Mở pull request có tham chiếu số hiệu của issue.

Issue khác của boostorg/iterator

Tất cả issue của boostorg/iterator

Issue tương tự

Thêm issue về C++

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.