This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: c-tree.texi Doc Patch (Second Attempt)


Maybe this is a little closer to the original author's intent:

ChangeLog
==========

2008-02-04 Tom Browder <tom.browder@gmail.com>

	   * doc/c-tree.texi (Types):
	   Clarified description of type examination.

	   Defined term 'cv' in original compound word 'cv-qualification', and
	   changed 'cv-qualification' to its expanded form to help persons not
	   familiar with the concept.

Index: c-tree.texi
===================================================================
--- c-tree.texi	(revision 132091)
+++ c-tree.texi	(working copy)
@@ -328,10 +328,11 @@
 qualification of the underlying element type when applied to an array
 type.  (If the element type is itself an array, then the recursion
 continues until a non-array type is found, and the qualification of this
-type is examined.)  So, for example, @code{CP_TYPE_CONST_P} will hold of
+type is examined.)  So, for example, @code{CP_TYPE_CONST_P} will hold
 the type @code{const int ()[7]}, denoting an array of seven @code{int}s.

-The following functions and macros deal with cv-qualification of types:
+The following functions and macros deal with the const/volatile (cv)
+qualification of types:
 @ftable @code
 @item CP_TYPE_QUALS
 This macro returns the set of type qualifiers applied to this type.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]