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

Unified Diff: tests/ColorPrivTest.cpp

Issue 98343006: Fix 32/64 bit warnings on g++-4.2. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 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 | « include/core/SkColorPriv.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/ColorPrivTest.cpp
diff --git a/tests/ColorPrivTest.cpp b/tests/ColorPrivTest.cpp
index ddcde5dc01e490e4f6dcb0d6bc22e272a5c87f20..19a63c7843d1b6f62025003304837179076db4dc 100644
--- a/tests/ColorPrivTest.cpp
+++ b/tests/ColorPrivTest.cpp
@@ -15,7 +15,7 @@ DEF_TEST(Splay, r) {
ASSERT(SkUnsplay(ag << 8, rb << 8) == color);
const uint64_t agrb = SkSplay(color);
- ASSERT(agrb == 0x00A100C300B200D4);
+ ASSERT(agrb == 0x00A100C300B200D4ULL);
ASSERT(SkUnsplay(agrb<<8) == color);
}
« no previous file with comments | « include/core/SkColorPriv.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698