Application Context Implementation #4

Closed
kayomn wants to merge 93 commits from event-loop-dev into main
1 changed files with 1 additions and 1 deletions
Showing only changes of commit f3426ef691 - Show all commits

View File

@ -4,7 +4,7 @@ pub const IntFittingRange = @import("std").math.IntFittingRange;
/// ///
/// Returns the maximum value of `Integer`. /// Returns the maximum value of `Integer`.
/// ///
pub fn maxInt(comptime Integer: type) Integer { pub fn maxInt(comptime Integer: type) comptime_int {
return switch (@typeInfo(Integer)) { return switch (@typeInfo(Integer)) {
.Int => |info| if (info.bits == 0) 0 else .Int => |info| if (info.bits == 0) 0 else
((1 << (info.bits - @boolToInt(info.signedness == .signed))) - 1), ((1 << (info.bits - @boolToInt(info.signedness == .signed))) - 1),