Ignore:
Timestamp:
2023-07-25T13:09:02Z (22 months ago)
Author:
Vojtech Horky <vojtech.horky@…>
Branches:
ticket/834-toolchain-update
Children:
4b992266
Parents:
1339fd9
Message:

C++: resolve ambiguous naming

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/include/__bits/adt/rbtree.hpp

    r1339fd9 r1f6bf85  
    233233            void swap(rbtree& other)
    234234                noexcept(allocator_traits<allocator_type>::is_always_equal::value &&
    235                          noexcept(swap(declval<KeyComp&>(), declval<KeyComp&>())))
     235                         noexcept(std::swap(declval<KeyComp&>(), declval<KeyComp&>())))
    236236            {
    237237                std::swap(root_, other.root_);
Note: See TracChangeset for help on using the changeset viewer.