diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-10-03 08:04:27 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-10-03 08:04:27 +0000 |
commit | 691fe9e05d8bf6d4eb82cf3766205f05d9d8df56 (patch) | |
tree | 7a65508dddfcf5173dca569b36d33f30549d1df5 /gcc/ada/s-bignum.ads | |
parent | df721dd80f5e2c6b37ce8e89fc40f50a246a1903 (diff) | |
download | gcc-691fe9e05d8bf6d4eb82cf3766205f05d9d8df56.tar.gz |
2012-10-03 Yannick Moy <moy@adacore.com>
* checks.adb, sem_prag.adb, s-bignum.ads: Minor typo fixes.
2012-10-03 Thomas Quinot <quinot@adacore.com>
* g-socket.adb (Connect_Socket, version with timeout): When the
newly-connected socket is reported as available for writing, check
whether it has a pending asynchronous error prior to returning.
2012-10-03 Ed Schonberg <schonberg@adacore.com>
* sem_ch6.adb (Check_Conformance): Additional info when subtype
conformance fails, due to a missing null exclusion indicatar in
a formal that must match a controlling access formal.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@192026 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/s-bignum.ads')
-rw-r--r-- | gcc/ada/s-bignum.ads | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gcc/ada/s-bignum.ads b/gcc/ada/s-bignum.ads index 7236774bfe2..7cc7526887e 100644 --- a/gcc/ada/s-bignum.ads +++ b/gcc/ada/s-bignum.ads @@ -70,10 +70,11 @@ package System.Bignums is end record; type Bignum is access all Bignum_Data; - -- This the type that is used externally. Possibly this could be a private - -- type, but we leave the structure exposed for now. For one thing it helps - -- with debugging. Note that this package never shares an allocated Bignum - -- value, so for example for X + 0, a copy of X is returned, not X itself. + -- This is the type that is used externally. Possibly this could be a + -- private type, but we leave the structure exposed for now. For one + -- thing it helps with debugging. Note that this package never shares + -- an allocated Bignum value, so for example for X + 0, a copy of X is + -- returned, not X itself. -- Note: none of the subprograms in this package modify the Bignum_Data -- records referenced by Bignum arguments of mode IN. |