Merge pull request #46 from realm/tg/remove-inorrect-move

Remove an incorrect std::move()
This commit is contained in:
Thomas Goyne 2016-02-19 09:42:53 -08:00
commit d87c41b352
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ Predicate parse(const std::string &query)
if (out_predicate.type == Predicate::Type::And && out_predicate.cpnd.sub_predicates.size() == 1) {
return std::move(out_predicate.cpnd.sub_predicates.back());
}
return std::move(out_predicate);
return out_predicate;
}
void analyze_grammar()