| Index: tests/PathUtilsTest.cpp
|
| diff --git a/tests/PathUtilsTest.cpp b/tests/PathUtilsTest.cpp
|
| index 223682eed8c2a8a229eec98e59fb5e09f1fd3145..15f981bb901a1a9919bd86b2102cc1993ec08536 100644
|
| --- a/tests/PathUtilsTest.cpp
|
| +++ b/tests/PathUtilsTest.cpp
|
| @@ -14,11 +14,9 @@
|
| #include "SkTime.h"
|
| #include "Test.h"
|
|
|
| -class SkBitmap;
|
| -
|
| const int kNumIt = 100;
|
|
|
| -static void fill_random_bits( int chars, char* bits ){
|
| +static void fill_random_bits(int chars, char* bits){
|
| SkMWCRandom rand(SkTime::GetMSecs());
|
|
|
| for (int i = 0; i < chars; ++i){
|
| @@ -26,7 +24,7 @@ static void fill_random_bits( int chars, char* bits ){
|
| }
|
| }
|
|
|
| -static int get_bit( const char* buffer, int x ) {
|
| +static int get_bit(const char* buffer, int x) {
|
| int byte = x >> 3;
|
| int bit = x & 7;
|
|
|
|
|