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

Unified Diff: sky/engine/wtf/RefPtrTest.cpp

Issue 722723003: Re-land 714393002 after fixing android build. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 | « sky/engine/wtf/RefPtr.h ('k') | sky/engine/wtf/RetainPtr.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/wtf/RefPtrTest.cpp
diff --git a/sky/engine/wtf/RefPtrTest.cpp b/sky/engine/wtf/RefPtrTest.cpp
index 29ebedf7a95bfb8f02bd2a3f8d8b0641d7ab9208..c7b2655fd9fd7b8a9ac5c0a3780e864f1533f67e 100644
--- a/sky/engine/wtf/RefPtrTest.cpp
+++ b/sky/engine/wtf/RefPtrTest.cpp
@@ -20,7 +20,6 @@ TEST(RefPtrTest, Basic)
EXPECT_TRUE(!string);
}
-#if COMPILER_SUPPORTS(CXX_RVALUE_REFERENCES)
TEST(RefPtrTest, MoveAssignmentOperator)
{
RefPtr<StringImpl> a = StringImpl::create("a");
@@ -31,6 +30,5 @@ TEST(RefPtrTest, MoveAssignmentOperator)
EXPECT_TRUE(!!b);
EXPECT_TRUE(!a);
}
-#endif
}
« no previous file with comments | « sky/engine/wtf/RefPtr.h ('k') | sky/engine/wtf/RetainPtr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698