File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
OpenTelemetry.Api/Internal Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public CallerArgumentExpressionAttribute(string parameterName)
4242}
4343#endif
4444
45- #if ! NETCOREAPP3_0_OR_GREATER && ! NETSTANDARD2_1_OR_GREATER
45+ #if ! NET6_0_OR_GREATER && ! NETSTANDARD2_1_OR_GREATER
4646namespace System . Diagnostics . CodeAnalysis
4747{
4848 /// <summary>Specifies that an output is not <see langword="null"/> even if
Original file line number Diff line number Diff line change 1515// </copyright>
1616
1717using System . Diagnostics ;
18- #if NETCOREAPP3_0_OR_GREATER
18+ #if NET6_0_OR_GREATER
1919using System . Numerics ;
2020#endif
2121using System . Runtime . CompilerServices ;
@@ -86,7 +86,7 @@ public static int LeadingZero32(int value)
8686 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
8787 public static int LeadingZero64 ( long value )
8888 {
89- #if NETCOREAPP3_0_OR_GREATER
89+ #if NET6_0_OR_GREATER
9090 return BitOperations . LeadingZeroCount ( ( ulong ) value ) ;
9191#else
9292 unchecked
You can’t perform that action at this time.
0 commit comments