Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: third_party/libaddressinput/chromium/json.cc

Issue 1549373004: Fix an unneeded std::move in //third_party/libaddressinput. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libaddressinput/chromium/json.cc
diff --git a/third_party/libaddressinput/chromium/json.cc b/third_party/libaddressinput/chromium/json.cc
index b7a7293d99c8df9204ce59f7df390f00c888ad1c..89c65bc17047cff6ed98df1d18170dc00e015216 100644
--- a/third_party/libaddressinput/chromium/json.cc
+++ b/third_party/libaddressinput/chromium/json.cc
@@ -5,7 +5,6 @@
#include "third_party/libaddressinput/src/cpp/src/util/json.h"
#include <map>
-#include <utility>
#include "base/json/json_reader.h"
#include "base/logging.h"
@@ -36,7 +35,7 @@ namespace {
else
result.reset(static_cast<const base::DictionaryValue*>(parsed.release()));
- return std::move(result);
+ return result;
}
} // namespace
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698