Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unused member functions from deque_anchor
Starting with clang 19, the unused member functions cas that take a deque_anchor fail to compile because they attempt to call load directly on the deque_anchor type, whereas they should be calling load on the atomic stored in the deque_anchor. Neither GCC nor clang until version 18 failed to compile the broken member functions (because they were unused they were never instantiatied). Since the functions are unused, simply remove them. Related llvm issue: llvm/llvm-project#102177.
- Loading branch information