Commit 06898263 authored by Lioncash's avatar Lioncash
Browse files

key_manager: Use std::vector's insert() instead of std::copy with a back_inserter

If the data is unconditionally being appended to the back of a
std::vector, we can just directly insert it there without the need to
insert all of the elements one-by-one with a std::back_inserter.
parent e70c08b5
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment