projects
/
platform
/
upstream
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c72f46
)
c++: Fix typo in NON_UNION_CLASS_TYPE_P.
author
Marek Polacek
<polacek@redhat.com>
Mon, 5 Oct 2020 22:06:19 +0000
(18:06 -0400)
committer
Marek Polacek
<polacek@redhat.com>
Mon, 5 Oct 2020 22:06:48 +0000
(18:06 -0400)
gcc/cp/ChangeLog:
* cp-tree.h (NON_UNION_CLASS_TYPE_P): Fix typo in a comment.
gcc/cp/cp-tree.h
patch
|
blob
|
history
diff --git
a/gcc/cp/cp-tree.h
b/gcc/cp/cp-tree.h
index
c9ad751
..
c7b5e79
100644
(file)
--- a/
gcc/cp/cp-tree.h
+++ b/
gcc/cp/cp-tree.h
@@
-2064,7
+2064,7
@@
enum languages { lang_c, lang_cplusplus };
#define CLASS_TYPE_P(T) \
(RECORD_OR_UNION_CODE_P (TREE_CODE (T)) && TYPE_LANG_FLAG_5 (T))
-/* Nonzero if T is a class type but not a
n
union. */
+/* Nonzero if T is a class type but not a union. */
#define NON_UNION_CLASS_TYPE_P(T) \
(TREE_CODE (T) == RECORD_TYPE && TYPE_LANG_FLAG_5 (T))