diff options
Diffstat (limited to 'runtime/utils.h')
-rw-r--r-- | runtime/utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/utils.h b/runtime/utils.h index 6850e8b025..4b39acd5cf 100644 --- a/runtime/utils.h +++ b/runtime/utils.h @@ -122,7 +122,7 @@ struct TypeStaticIf<false, A, B> { // For rounding integers. template<typename T> static inline T RoundDown(T x, int n) { - CHECK(IsPowerOfTwo(n)); + DCHECK(IsPowerOfTwo(n)); return (x & -n); } |