(svn r11526) -Codechange: Rename the function delta fitting to the naming style

This commit is contained in:
skidd13
2007-11-26 16:01:29 +00:00
parent 91152b925e
commit f56579e0d9
9 changed files with 23 additions and 23 deletions

View File

@@ -175,7 +175,7 @@ static inline int32 ClampToI32(const int64 a)
* @param b The second scalar
* @return The absolute difference between the given scalars
*/
template <typename T> static inline T delta(const T a, const T b) {
template <typename T> static inline T Delta(const T a, const T b) {
return (a < b) ? b - a : a - b;
}