Fix method signatures

This commit is contained in:
scrawl 2013-03-06 21:26:41 +01:00
parent f7d8f6456f
commit 8be9627c8d

View file

@ -26,7 +26,7 @@ namespace MWMechanics
return mBase; return mBase;
} }
const T& getModified() const T getModified() const
{ {
return std::max(static_cast<T>(0), mModified); return std::max(static_cast<T>(0), mModified);
} }
@ -108,7 +108,7 @@ namespace MWMechanics
return mStatic.getBase(); return mStatic.getBase();
} }
const T& getModified() const T getModified() const
{ {
return mStatic.getModified(); return mStatic.getModified();
} }