irc: add timing measurements; formatting
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Id4402547e18b6569464850c3753383396a6a6964
This commit is contained in:
parent
54892c3121
commit
1ceb889a16
2 changed files with 16 additions and 3 deletions
|
|
@ -388,7 +388,7 @@ struct Deserializer::Impl {
|
|||
uint32_t num_elements = read_u32();
|
||||
std::vector<std::shared_ptr<Node>> elements;
|
||||
elements.reserve(num_elements);
|
||||
for (uint32_t i = 0; i < num_elements; i++) {
|
||||
for (uint32_t i = 0; i < num_elements; i++) {
|
||||
elements.push_back(read_node());
|
||||
}
|
||||
return std::make_shared<Node>(ListNode(std::move(elements), line));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue