Changeset 3f7031a 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:
23dcc14
Parents:
39e468f
git-author:
Dzejrou <dzejrou@…> (2018-04-27 15:33:20)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:22)
Message:

cpp: fixed deque::deque(deque&&) typo causing push to fail after move

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/include/impl/deque.hpp

    r39e468f r3f7031a  
    402402                : allocator_{move(other.allocator_)},
    403403                  front_bucket_idx_{other.front_bucket_idx_},
    404                   back_bucket_idx_{other.front_bucket_idx_},
     404                  back_bucket_idx_{other.back_bucket_idx_},
    405405                  front_bucket_{other.front_bucket_},
    406406                  back_bucket_{other.back_bucket_},
Note: See TracChangeset for help on using the changeset viewer.