| Index: tools/crashpad_database_util.cc
|
| diff --git a/tools/crashpad_database_util.cc b/tools/crashpad_database_util.cc
|
| index 433b47693b990e7888471b1e73564aff607c8555..50666f262270bd99ca21c29f8b0c5987324e901f 100644
|
| --- a/tools/crashpad_database_util.cc
|
| +++ b/tools/crashpad_database_util.cc
|
| @@ -36,6 +36,7 @@
|
| #include "tools/tool_support.h"
|
| #include "util/file/file_io.h"
|
| #include "util/file/file_reader.h"
|
| +#include "util/stdlib/move.h"
|
| #include "util/misc/uuid.h"
|
|
|
| namespace crashpad {
|
| @@ -552,7 +553,7 @@ int DatabaseUtilMain(int argc, char* argv[]) {
|
| return EXIT_FAILURE;
|
| }
|
|
|
| - file_reader = file_path_reader.Pass();
|
| + file_reader = crashpad::move(file_path_reader);
|
| }
|
|
|
| CrashReportDatabase::NewReport* new_report;
|
|
|