@@ -9,7 +9,7 @@ pub const Murmur2_32 = struct {
99 const Self = @This ();
1010
1111 pub fn hash (str : []const u8 ) u32 {
12- return @call (.{ . modifier = . always_inline } , Self .hashWithSeed , .{ str , default_seed });
12+ return @call (.always_inline , Self .hashWithSeed , .{ str , default_seed });
1313 }
1414
1515 pub fn hashWithSeed (str : []const u8 , seed : u32 ) u32 {
@@ -45,7 +45,7 @@ pub const Murmur2_32 = struct {
4545 }
4646
4747 pub fn hashUint32 (v : u32 ) u32 {
48- return @call (.{ . modifier = . always_inline } , Self .hashUint32WithSeed , .{ v , default_seed });
48+ return @call (.always_inline , Self .hashUint32WithSeed , .{ v , default_seed });
4949 }
5050
5151 pub fn hashUint32WithSeed (v : u32 , seed : u32 ) u32 {
@@ -65,7 +65,7 @@ pub const Murmur2_32 = struct {
6565 }
6666
6767 pub fn hashUint64 (v : u64 ) u32 {
68- return @call (.{ . modifier = . always_inline } , Self .hashUint64WithSeed , .{ v , default_seed });
68+ return @call (.always_inline , Self .hashUint64WithSeed , .{ v , default_seed });
6969 }
7070
7171 pub fn hashUint64WithSeed (v : u64 , seed : u32 ) u32 {
@@ -94,7 +94,7 @@ pub const Murmur2_64 = struct {
9494 const Self = @This ();
9595
9696 pub fn hash (str : []const u8 ) u64 {
97- return @call (.{ . modifier = . always_inline } , Self .hashWithSeed , .{ str , default_seed });
97+ return @call (.always_inline , Self .hashWithSeed , .{ str , default_seed });
9898 }
9999
100100 pub fn hashWithSeed (str : []const u8 , seed : u64 ) u64 {
@@ -128,7 +128,7 @@ pub const Murmur2_64 = struct {
128128 }
129129
130130 pub fn hashUint32 (v : u32 ) u64 {
131- return @call (.{ . modifier = . always_inline } , Self .hashUint32WithSeed , .{ v , default_seed });
131+ return @call (.always_inline , Self .hashUint32WithSeed , .{ v , default_seed });
132132 }
133133
134134 pub fn hashUint32WithSeed (v : u32 , seed : u64 ) u64 {
@@ -145,7 +145,7 @@ pub const Murmur2_64 = struct {
145145 }
146146
147147 pub fn hashUint64 (v : u64 ) u64 {
148- return @call (.{ . modifier = . always_inline } , Self .hashUint64WithSeed , .{ v , default_seed });
148+ return @call (.always_inline , Self .hashUint64WithSeed , .{ v , default_seed });
149149 }
150150
151151 pub fn hashUint64WithSeed (v : u64 , seed : u64 ) u64 {
@@ -173,7 +173,7 @@ pub const Murmur3_32 = struct {
173173 }
174174
175175 pub fn hash (str : []const u8 ) u32 {
176- return @call (.{ . modifier = . always_inline } , Self .hashWithSeed , .{ str , default_seed });
176+ return @call (.always_inline , Self .hashWithSeed , .{ str , default_seed });
177177 }
178178
179179 pub fn hashWithSeed (str : []const u8 , seed : u32 ) u32 {
@@ -221,7 +221,7 @@ pub const Murmur3_32 = struct {
221221 }
222222
223223 pub fn hashUint32 (v : u32 ) u32 {
224- return @call (.{ . modifier = . always_inline } , Self .hashUint32WithSeed , .{ v , default_seed });
224+ return @call (.always_inline , Self .hashUint32WithSeed , .{ v , default_seed });
225225 }
226226
227227 pub fn hashUint32WithSeed (v : u32 , seed : u32 ) u32 {
@@ -247,7 +247,7 @@ pub const Murmur3_32 = struct {
247247 }
248248
249249 pub fn hashUint64 (v : u64 ) u32 {
250- return @call (.{ . modifier = . always_inline } , Self .hashUint64WithSeed , .{ v , default_seed });
250+ return @call (.always_inline , Self .hashUint64WithSeed , .{ v , default_seed });
251251 }
252252
253253 pub fn hashUint64WithSeed (v : u64 , seed : u32 ) u32 {
0 commit comments