small style fix. [#METR-9599]

This commit is contained in:
Michael Kolupaev 2014-02-24 11:37:13 +04:00
parent c60a342884
commit 4324cede4e

View File

@ -20,7 +20,7 @@ struct AndImpl
return true;
}
static bool isSaturatedValue(UInt8 a)
static inline bool isSaturatedValue(UInt8 a)
{
return !a;
}
@ -39,7 +39,7 @@ struct OrImpl
return true;
}
static bool isSaturatedValue(UInt8 a)
static inline bool isSaturatedValue(UInt8 a)
{
return a;
}
@ -58,7 +58,7 @@ struct XorImpl
return false;
}
static bool isSaturatedValue(UInt8 a)
static inline bool isSaturatedValue(UInt8 a)
{
return false;
}