doh. make the new S16 and U16 checkers inline
authorreed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Sat, 21 Nov 2009 19:58:04 +0000 (19:58 +0000)
committerreed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Sat, 21 Nov 2009 19:58:04 +0000 (19:58 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@442 2bbb7eff-a529-9590-31e7-b0007b416f81

include/core/SkTypes.h

index 8961aa065d927b52e6d578067bb1c19c75f8a337..fa21adcb4128d5ac7afbdf77f9c087d34f950d2a 100644 (file)
@@ -151,13 +151,13 @@ typedef uint8_t     SkBool8;
 
 /** Returns true if the value can be represented with signed 16bits
  */
-static bool SkIsS16(long x) {
+static inline bool SkIsS16(long x) {
     return (int16_t)x == x;
 }
 
 /** Returns true if the value can be represented with unsigned 16bits
  */
-static bool SkIsU16(long x) {
+static inline bool SkIsU16(long x) {
     return (uint16_t)x == x;
 }