diff options
author | Andrew Pinski <quic_apinski@quicinc.com> | 2024-11-22 09:25:41 -0800 |
---|---|---|
committer | Andrew Pinski <quic_apinski@quicinc.com> | 2024-11-22 13:13:57 -0800 |
commit | 76c202329458aad027ececc59d666e4995e3644e (patch) | |
tree | 882de1b95f4d2d234a72f7e6e837684b797843df /gcc | |
parent | 982d10b74b50f28fd5dbd63876b685f484a6fec2 (diff) | |
download | gcc-76c202329458aad027ececc59d666e4995e3644e.zip gcc-76c202329458aad027ececc59d666e4995e3644e.tar.gz gcc-76c202329458aad027ececc59d666e4995e3644e.tar.bz2 |
test-art: Fix comment in types.h
The comment references INCLUDE_MEMORY but the code actually
checks INCLUDE_VECTOR. So fix up the comment to mention
INCLUDE_VECTROR.
Pushed as obvious.
gcc/ChangeLog:
* text-art/types.h: Fix comment.
Signed-off-by: Andrew Pinski <quic_apinski@quicinc.com>
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/text-art/types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/text-art/types.h b/gcc/text-art/types.h index 2b9f8b3..c741f77 100644 --- a/gcc/text-art/types.h +++ b/gcc/text-art/types.h @@ -23,7 +23,7 @@ along with GCC; see the file COPYING3. If not see /* This header uses std::vector, but <vector> can't be directly included due to issues with macros. Hence it must be included from - system.h by defining INCLUDE_MEMORY in any source file using it. */ + system.h by defining INCLUDE_VECTOR in any source file using it. */ #ifndef INCLUDE_VECTOR # error "You must define INCLUDE_VECTOR before including system.h to use text-art/types.h" |