Changeset 275bdafb in mainline


Ignore:
Timestamp:
2018-07-05T21:41:22Z (6 years ago)
Author:
Dzejrou <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4d65515
Parents:
f63bef0
git-author:
Dzejrou <dzejrou@…> (2018-04-28 23:45:56)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:22)
Message:

cpp: removed unnecessary template parameter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/include/internal/hash_table.hpp

    rf63bef0 r275bdafb  
    146146            }
    147147
    148             template<class Allocator>
    149             size_type max_size(Allocator& alloc)
    150             {
    151                 return allocator_traits<Allocator>::max_size(alloc);
     148            size_type max_size(allocator_type& alloc)
     149            {
     150                return allocator_traits<allocator_type>::max_size(alloc);
    152151            }
    153152
Note: See TracChangeset for help on using the changeset viewer.