aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/State/FPRoundingMode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ARMeilleure/State/FPRoundingMode.cs')
-rw-r--r--src/ARMeilleure/State/FPRoundingMode.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ARMeilleure/State/FPRoundingMode.cs b/src/ARMeilleure/State/FPRoundingMode.cs
index 8d757a15..0913175e 100644
--- a/src/ARMeilleure/State/FPRoundingMode.cs
+++ b/src/ARMeilleure/State/FPRoundingMode.cs
@@ -2,10 +2,10 @@ namespace ARMeilleure.State
{
public enum FPRoundingMode
{
- ToNearest = 0, // With ties to even.
- TowardsPlusInfinity = 1,
+ ToNearest = 0, // With ties to even.
+ TowardsPlusInfinity = 1,
TowardsMinusInfinity = 2,
- TowardsZero = 3,
- ToNearestAway = 4 // With ties to away.
+ TowardsZero = 3,
+ ToNearestAway = 4, // With ties to away.
}
}