diff options
Diffstat (limited to 'gcc/ada/libgnat/a-nbnbin.adb')
-rw-r--r-- | gcc/ada/libgnat/a-nbnbin.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/libgnat/a-nbnbin.adb b/gcc/ada/libgnat/a-nbnbin.adb index b919d86..70df2c2 100644 --- a/gcc/ada/libgnat/a-nbnbin.adb +++ b/gcc/ada/libgnat/a-nbnbin.adb @@ -238,8 +238,8 @@ package body Ada.Numerics.Big_Numbers.Big_Integers is function From_String (Arg : String) return Big_Integer is Result : Big_Integer; begin - -- ??? only support Long_Long_Integer, good enough for now - Set_Bignum (Result, To_Bignum (Long_Long_Integer'Value (Arg))); + -- ??? only support Long_Long_Long_Integer, good enough for now + Set_Bignum (Result, To_Bignum (Long_Long_Long_Integer'Value (Arg))); return Result; end From_String; |