From e44810a725226dd4217c74c2c8ca056c35026688 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Wed, 10 Jul 2024 13:29:31 +1000 Subject: [PATCH] Fix stacktraces for `RangeToExclusive` extension --- src/BizHawk.Common/Ranges.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/BizHawk.Common/Ranges.cs b/src/BizHawk.Common/Ranges.cs index f2296743ea..451e669f05 100644 --- a/src/BizHawk.Common/Ranges.cs +++ b/src/BizHawk.Common/Ranges.cs @@ -67,7 +67,8 @@ namespace BizHawk.Common { private const ulong MIN_LONG_NEGATION_AS_ULONG = 9223372036854775808UL; - private static readonly ArithmeticException ExclusiveRangeMinValExc = new ArithmeticException("exclusive range end is min value of integral type"); + private static ArithmeticException ExclusiveRangeMinValExc + => new("exclusive range end is min value of integral type"); /// if it's contained in , or else whichever bound of is closest to public static T ConstrainWithin(this T value, Range range) where T : unmanaged, IComparable => value.CompareTo(range.Start) < 0