Skip to content

Commit 80db9a8

Browse files
committed
Simplify create method
1 parent 1621289 commit 80db9a8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/Core/SQLiteBuildDB.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -777,8 +777,7 @@ if (result != SQLITE_OK) { \
777777
std::unique_ptr<BuildDB> core::createSQLiteBuildDB(StringRef path,
778778
uint32_t clientSchemaVersion,
779779
std::string* error_out) {
780-
auto db = llvm::make_unique<SQLiteBuildDB>(path, clientSchemaVersion);
781-
return std::move(db);
780+
return llvm::make_unique<SQLiteBuildDB>(path, clientSchemaVersion);
782781
}
783782

784783
#undef checkSQLiteResultOKReturnFalse

0 commit comments

Comments
 (0)