From 270e3c6c8f075f5b5204bf76793bb3159dd91972 Mon Sep 17 00:00:00 2001 From: sergerad Date: Sat, 1 Mar 2025 19:55:02 +1300 Subject: [PATCH] Move i64 --- crates/utils/src/tracing/span_ext.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/utils/src/tracing/span_ext.rs b/crates/utils/src/tracing/span_ext.rs index 77b359eda..4aed6c7a8 100644 --- a/crates/utils/src/tracing/span_ext.rs +++ b/crates/utils/src/tracing/span_ext.rs @@ -53,7 +53,7 @@ macro_rules! impl_int_to_value { )* }; } -impl_int_to_value!(u16, u32, i64); +impl_int_to_value!(u16, u32); /// Generates `impl ToValue` blocks for types that are `Into`. macro_rules! impl_to_value { @@ -67,7 +67,7 @@ macro_rules! impl_to_value { )* }; } -impl_to_value!(f64); +impl_to_value!(f64, i64); /// Utility functions based on [`tracing_opentelemetry::OpenTelemetrySpanExt`]. ///