restate sendable conformance to avoid warning/as-error

This commit is contained in:
Konrad `ktoso` Malawski 2024-05-14 12:22:23 +09:00
parent e86969babd
commit 446954d5ca
No known key found for this signature in database
GPG Key ID: D1D8CE7219CDA755
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ extension FloatingPointCounter: CustomStringConvertible {
/// A gauge is a metric that represents a single numerical value that can arbitrarily go up and down. /// A gauge is a metric that represents a single numerical value that can arbitrarily go up and down.
/// Gauges are typically used for measured values like temperatures or current memory usage, but also "counts" that can go up and down, like the number of active threads. /// Gauges are typically used for measured values like temperatures or current memory usage, but also "counts" that can go up and down, like the number of active threads.
/// Gauges are modeled as `Recorder` with a sample size of 1 and that does not perform any aggregation. /// Gauges are modeled as `Recorder` with a sample size of 1 and that does not perform any aggregation.
public final class Gauge: Recorder { public final class Gauge: Recorder, @unchecked Sendable {
/// Create a new `Gauge`. /// Create a new `Gauge`.
/// ///
/// - parameters: /// - parameters: