(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 d736a04b59
commit 734b22e070
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;
}