Skip to content

Commit

Permalink
Return significand bits correctly (dotnet API). Fixes #4584
Browse files Browse the repository at this point in the history
  • Loading branch information
iscottb122 authored Jul 22, 2020
1 parent ed58175 commit b6867d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/dotnet/FPExpr.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class FPExpr : Expr
/// <summary>
/// The number of significand bits.
/// </summary>
public uint SBits { get { return ((FPSort)Sort).EBits; } }
public uint SBits { get { return ((FPSort)Sort).SBits; } }

#region Internal
/// <summary> Constructor for FPExpr </summary>
Expand Down

0 comments on commit b6867d6

Please sign in to comment.