Re: Error in GCC documentation page

2010-07-22 Thread Joseph S. Myers
On Thu, 8 Jul 2010, Robert Dewar wrote: > For another take, though the Ada standard extensively uses the word > integral, it does prefer integer type, by analogy with array type, > record type etc, where no adjective is available. > > But as noted the C++ standard prefers integral type, so might

Re: Error in GCC documentation page

2010-07-08 Thread Jonathan Wakely
On 8 July 2010 13:45, Robert Dewar wrote: > Joern Rennecke wrote: >> >> Quoting Robert Dewar : >> >>> But as noted the C++ standard prefers integral type, so might as well >>> standardize on that when talking about C or C++. >> >> I think it also helps clarity to speak of integral types.  I.e. in t

Re: Error in GCC documentation page

2010-07-08 Thread Robert Dewar
Joern Rennecke wrote: Quoting Robert Dewar : But as noted the C++ standard prefers integral type, so might as well standardize on that when talking about C or C++. I think it also helps clarity to speak of integral types. I.e. in the C family of languages, 'char' is an integral type, but you

Re: Error in GCC documentation page

2010-07-08 Thread Joern Rennecke
Quoting Robert Dewar : But as noted the C++ standard prefers integral type, so might as well standardize on that when talking about C or C++. I think it also helps clarity to speak of integral types. I.e. in the C family of languages, 'char' is an integral type, but you may not use the 'int'

Re: Error in GCC documentation page

2010-07-08 Thread Robert Dewar
Paolo Carlini wrote: ... I only want to add - I said this to the OP in private email too - that we also have in widespread use expressions like 'integral constant' and even 'is_integral' (standardized in the C++0x library). Thus I don't see the point of changing now, after so many years, that spe

Re: Error in GCC documentation page

2010-07-08 Thread Paolo Carlini
... I only want to add - I said this to the OP in private email too - that we also have in widespread use expressions like 'integral constant' and even 'is_integral' (standardized in the C++0x library). Thus I don't see the point of changing now, after so many years, that specific integral in the d

Re: Error in GCC documentation page

2010-07-08 Thread Martin Guy
> > > But in the C++ standard "integral expression" is more common. "integral" is an adjective and "integer" is a noun. "integer expression", though gramatically wrong (or, at best, an elision of two nouns), is perfectly clear and unambiguous, whereas "integral expression", though gramatically co

Re: Error in GCC documentation page

2010-07-08 Thread Robert Dewar
Nils Schlemminger wrote: Am 08.07.2010 10:49, schrieb Jonathan Wakely: On 8 July 2010 07:12, Nils Schlemminger wrote: Am 08.07.2010 00:56, schrieb Jonathan Wakely: The usage is correct in "standardese" and English. My dictionary gives one definition of "integral" as "denoting a number that

Re: Error in GCC documentation page

2010-07-08 Thread Nils Schlemminger
Am 08.07.2010 10:49, schrieb Jonathan Wakely: On 8 July 2010 07:12, Nils Schlemminger wrote: Am 08.07.2010 00:56, schrieb Jonathan Wakely: The usage is correct in "standardese" and English. My dictionary gives one definition of "integral" as "denoting a number that is an integer". Thats co

Re: Error in GCC documentation page

2010-07-08 Thread Jonathan Wakely
On 8 July 2010 07:12, Nils Schlemminger wrote: >  Am 08.07.2010 00:56, schrieb Jonathan Wakely: >> >> The usage is correct in "standardese" and English. >> My dictionary gives one definition of "integral" as "denoting a number >> that is an integer". >> > > Thats correct but not all non native spea

Re: Error in GCC documentation page

2010-07-07 Thread Nils Schlemminger
Am 08.07.2010 00:56, schrieb Jonathan Wakely: The usage is correct in "standardese" and English. My dictionary gives one definition of "integral" as "denoting a number that is an integer". Thats correct but not all non native speaker know that. The word integer is more common. Cheers Nils

Re: Error in GCC documentation page

2010-07-07 Thread Dave Korn
On 07/07/2010 23:56, Jonathan Wakely wrote: > On 7 July 2010 19:12, Paolo Carlini wrote: >> On 07/07/2010 08:02 PM, Trevor Smedley wrote: >>> On the page http://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html the term >>> "integral" is used twice in the section " Built-in Function: long >>> __buil

Re: Error in GCC documentation page

2010-07-07 Thread Jonathan Wakely
On 7 July 2010 19:12, Paolo Carlini wrote: > On 07/07/2010 08:02 PM, Trevor Smedley wrote: >> On the page http://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html the term >> "integral" is used twice in the section " Built-in Function: long >> __builtin_expect (long exp, long c)", where what is inte

Re: Error in GCC documentation page

2010-07-07 Thread Paolo Carlini
On 07/07/2010 08:02 PM, Trevor Smedley wrote: > On the page http://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html the term > "integral" is used twice in the section " Built-in Function: long > __builtin_expect (long exp, long c)", where what is intended is "integer". > I'm not a native English

Error in GCC documentation page

2010-07-07 Thread Trevor Smedley
On the page http://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html the term "integral" is used twice in the section " Built-in Function: long __builtin_expect (long exp, long c)", where what is intended is "integer". Trevor Smedley