fixed two values of function name error.

This commit is contained in:
hyzboy 2021-01-15 20:25:49 +08:00
parent 162a6ce2f2
commit e1cac2e790

View File

@ -439,7 +439,7 @@ namespace hgl
/** /**
* *
*/ */
template<typename T> inline T divide_rounding_up(T a, T b) template<typename T> inline T divide_rounding_up(T x, T y)
{ {
return (x + y - (T)1) / y; return (x + y - (T)1) / y;
} }