From d3976a1bc06b6a8d019fdbc9edeff99acf81b838 Mon Sep 17 00:00:00 2001 From: "robertphillips@google.com" Date: Tue, 2 Jul 2013 00:16:57 +0000 Subject: Fix for Win7 bench compiler error/warning git-svn-id: http://skia.googlecode.com/svn/trunk@9855 2bbb7eff-a529-9590-31e7-b0007b416f81 --- bench/PathUtilsBench.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bench/PathUtilsBench.cpp b/bench/PathUtilsBench.cpp index 6cbbb315ac..a53a1f59d2 100644 --- a/bench/PathUtilsBench.cpp +++ b/bench/PathUtilsBench.cpp @@ -18,8 +18,7 @@ //this function is redefined for sample, test, and bench. is there anywhere // I can put it to avoid code duplcation? static void fillRandomBits( int chars, char* bits ){ - SkTime time; - SkMWCRandom rand = SkMWCRandom( time.GetMSecs() ); + SkMWCRandom rand(SkTime::GetMSecs()); for (int i = 0; i < chars; ++i){ bits[i] = rand.nextU(); -- cgit v1.2.3