From 5b4c966ea17b500763fdb5573c73f5f479da0a9e Mon Sep 17 00:00:00 2001 From: Kyle Sanderson Date: Sat, 17 Jan 2015 14:29:30 -0800 Subject: [PATCH] de-inline huge calls in blob.h --- Extension/steamtools/blob.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Extension/steamtools/blob.h b/Extension/steamtools/blob.h index f2b1b63..dae0a50 100644 --- a/Extension/steamtools/blob.h +++ b/Extension/steamtools/blob.h @@ -75,7 +75,7 @@ public: public: template - inline T Read(bool *bError = NULL) + T Read(bool *bError = NULL) { if ((m_iCurrentOffset + sizeof(T)) > m_iSize) { @@ -94,7 +94,7 @@ public: } template - inline bool Read(T *pOut) + bool Read(T *pOut) { if ((m_iCurrentOffset + sizeof(T)) > m_iSize) return false; @@ -107,7 +107,7 @@ public: } template - inline bool Read(T &Out) + bool Read(T &Out) { if ((m_iCurrentOffset + sizeof(T)) > m_iSize) return false; @@ -119,7 +119,7 @@ public: return true; } - inline bool Read(void *pOut, size_t iLength) + bool Read(void *pOut, size_t iLength) { if ((m_iCurrentOffset + iLength) > m_iSize) return false;