Skip to content
Commit b893c7c9 authored by Daniel Vrátil's avatar Daniel Vrátil 🤖
Browse files

Fix return-std-move warning in CollectionStatistics

Returning a named local variable does not move in this case because qb
is of a different type than the return type of the function, so Clang
warns that a copy is produced instead of a move, use std::move() explicitly
here.
parent f915e873
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