diff options
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/SkReadBuffer.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/SkReadBuffer.h b/src/core/SkReadBuffer.h index b061cd93a2..8eb48692a0 100644 --- a/src/core/SkReadBuffer.h +++ b/src/core/SkReadBuffer.h @@ -117,11 +117,11 @@ public: const void* skip(size_t size); const void* skip(size_t count, size_t size); // does safe multiply - template <typename T> const T* skipT(size_t size) { - return static_cast<const T*>(this->skip(size)); + template <typename T> const T* skipT() { + return static_cast<const T*>(this->skip(sizeof(T))); } - template <typename T> const T* skipT(size_t count, size_t size) { - return static_cast<const T*>(this->skip(count, size)); + template <typename T> const T* skipT(size_t count) { + return static_cast<const T*>(this->skip(count, sizeof(T))); } // primitives |