aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/utils/SkParse.cpp
diff options
context:
space:
mode:
authorGravatar tomhudson@google.com <tomhudson@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-08-25 15:50:54 +0000
committerGravatar tomhudson@google.com <tomhudson@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-08-25 15:50:54 +0000
commit513909f9a2f11e385be96ec5455dcbecfd5d32d7 (patch)
treef0bea194bfeff6894ab92b4981c8dd78ef79d500 /src/utils/SkParse.cpp
parent32992605aa54f6781b2e06d7ce6733b3ab0d75e7 (diff)
Remove compiler warnings (Linux clang, mostly).
Fix indentation. Remove unnecessary virtual destructor. codereview.appspot.com/4965043/ git-svn-id: http://skia.googlecode.com/svn/trunk@2171 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/utils/SkParse.cpp')
-rw-r--r--src/utils/SkParse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/SkParse.cpp b/src/utils/SkParse.cpp
index f93e2ef1b2..cb265c383f 100644
--- a/src/utils/SkParse.cpp
+++ b/src/utils/SkParse.cpp
@@ -130,7 +130,7 @@ const char* SkParse::FindHex(const char str[], uint32_t* value)
*value = n;
return str;
}
- return false;
+ return NULL;
}
const char* SkParse::FindS32(const char str[], int32_t* value)