Remove superfluous std::move in return std::move(local_var)

This commit is contained in:
scurest 2016-06-25 13:26:21 -05:00
parent 4c280555ff
commit de4705914d
2 changed files with 2 additions and 2 deletions

View file

@ -117,7 +117,7 @@ Entry CreateEntry(Class log_class, Level log_level,
vsnprintf(formatting_buffer.data(), formatting_buffer.size(), format, args);
entry.message = std::string(formatting_buffer.data());
return std::move(entry);
return entry;
}
static Filter* filter = nullptr;