Skip to content

Commit f4c9da8

Browse files
committed
add missing namespace
1 parent 376b0b6 commit f4c9da8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

api/util/bitops.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ inline bool is_aligned(uintptr_t A, uintptr_t ptr) noexcept
247247
return (ptr & (A - 1)) == 0;
248248
}
249249

250-
inline size_t upercent(size_t a, size_t b) noexcept
250+
inline std::size_t upercent(std::size_t a, std::size_t b) noexcept
251251
{
252252
return (100 * a + b / 2) / b;
253253
}

0 commit comments

Comments
 (0)