Explicitly use std::move to make clang 3.5 compile

This commit is contained in:
Fangrui Song 2018-01-20 14:06:14 -08:00
parent 8c6a87b3a3
commit a57798154d

View File

@ -2033,7 +2033,7 @@ optional<std::vector<std::unique_ptr<IndexFile>>> ParseWithTu(
entry->dependencies.end()); entry->dependencies.end());
} }
return result; return std::move(result);
} }
void ConcatTypeAndName(std::string& type, const std::string& name) { void ConcatTypeAndName(std::string& type, const std::string& name) {