Skip to content

Commit 28effb8

Browse files
committed
[stdlib] _Hasher: Add @effects(releasenone) attributes
1 parent 37e07c3 commit 28effb8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

stdlib/public/core/Hashing.swift

+8
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@ public struct _Hasher {
244244
internal var _core: Core
245245

246246
// NOT @_inlineable
247+
@effects(releasenone)
247248
public init() {
248249
self._core = Core()
249250
}
@@ -254,32 +255,39 @@ public struct _Hasher {
254255
}
255256

256257
// NOT @_inlineable
258+
@effects(releasenone)
257259
public mutating func append(bits: UInt) {
258260
_core.append(bits)
259261
}
260262
// NOT @_inlineable
263+
@effects(releasenone)
261264
public mutating func append(bits: UInt32) {
262265
_core.append(bits)
263266
}
264267
// NOT @_inlineable
268+
@effects(releasenone)
265269
public mutating func append(bits: UInt64) {
266270
_core.append(bits)
267271
}
268272

269273
// NOT @_inlineable
274+
@effects(releasenone)
270275
public mutating func append(bits: Int) {
271276
_core.append(UInt(bitPattern: bits))
272277
}
273278
// NOT @_inlineable
279+
@effects(releasenone)
274280
public mutating func append(bits: Int32) {
275281
_core.append(UInt32(bitPattern: bits))
276282
}
277283
// NOT @_inlineable
284+
@effects(releasenone)
278285
public mutating func append(bits: Int64) {
279286
_core.append(UInt64(bitPattern: bits))
280287
}
281288

282289
// NOT @_inlineable
290+
@effects(releasenone)
283291
public mutating func finalize() -> Int {
284292
return Int(truncatingIfNeeded: _core.finalize())
285293
}

0 commit comments

Comments
 (0)