| Index: src/utils.h
|
| diff --git a/src/utils.h b/src/utils.h
|
| index 98810bce0d950e3b027230857d441ac5c90b8dee..887988a48845d1ac3fecac138baf3ef1014d3412 100644
|
| --- a/src/utils.h
|
| +++ b/src/utils.h
|
| @@ -192,11 +192,6 @@ inline bool IsAddressAligned(Address addr,
|
| return IsAligned(offs, alignment);
|
| }
|
|
|
| -template <typename T, typename U>
|
| -inline T RoundUpToMultipleOfPowOf2(T value, U multiple) {
|
| - DCHECK(multiple && ((multiple & (multiple - 1)) == 0));
|
| - return (value + multiple - 1) & ~(multiple - 1);
|
| -}
|
|
|
| // Returns the maximum of the two parameters.
|
| template <typename T>
|
|
|