From 70c494273fa71d922405cba4dc39f5457652a2db Mon Sep 17 00:00:00 2001 From: dcheng Date: Wed, 2 Mar 2016 15:20:34 -0800 Subject: =?UTF-8?q?Convert=20Pass()=E2=86=92std::move()=20on=20Windows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also cleaned up a few stragglers from grepping the source: it's unclear if these are just building with weird defines, don't build at all, only build on obscure platforms, or something elseā€¦ either way, Pass() itself will be removed shortly after this. BUG=557422 Review URL: https://codereview.chromium.org/1752233002 Cr-Commit-Position: refs/heads/master@{#378872} --- mojo/edk/test/test_utils_win.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mojo/edk/test/test_utils_win.cc') diff --git a/mojo/edk/test/test_utils_win.cc b/mojo/edk/test/test_utils_win.cc index e01d45a..17bf5bb 100644 --- a/mojo/edk/test/test_utils_win.cc +++ b/mojo/edk/test/test_utils_win.cc @@ -107,7 +107,7 @@ base::ScopedFILE FILEFromPlatformHandle(ScopedPlatformHandle h, _open_osfhandle(reinterpret_cast(h.release().handle), flags), mode)); PCHECK(rv) << "_fdopen"; - return rv.Pass(); + return rv; } } // namespace test -- cgit v1.1