aboutsummaryrefslogtreecommitdiff
path: root/gcc/incpath.h
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@acm.org>2020-07-14 06:08:44 -0700
committerNathan Sidwell <nathan@acm.org>2020-07-14 06:29:12 -0700
commitbf567bb3b3cb43e299e947bbdfa00da416de0890 (patch)
tree1cbec6e68933fb3df8088ceb2496fc2e2200c697 /gcc/incpath.h
parent31dbaab57fef485412a0369a222b9c252ad2713b (diff)
downloadgcc-bf567bb3b3cb43e299e947bbdfa00da416de0890.zip
gcc-bf567bb3b3cb43e299e947bbdfa00da416de0890.tar.gz
gcc-bf567bb3b3cb43e299e947bbdfa00da416de0890.tar.bz2
core: formatting & comment
One of hash_map's getters returns a pointer to T or null, The comment said it returned T or null. Also an unaligned pair of comments. gcc/ * hash-map.h (hash_map::get): Note it is a pointer to value. * incpath.h (incpath_kind): Align comments.
Diffstat (limited to 'gcc/incpath.h')
-rw-r--r--gcc/incpath.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/incpath.h b/gcc/incpath.h
index fe48194..c6470816 100644
--- a/gcc/incpath.h
+++ b/gcc/incpath.h
@@ -22,8 +22,8 @@
enum incpath_kind {
INC_QUOTE = 0, /* include "foo" */
INC_BRACKET, /* include <foo> */
- INC_SYSTEM, /* sysinclude */
- INC_AFTER, /* post-sysinclude. */
+ INC_SYSTEM, /* sys-include */
+ INC_AFTER, /* post-sysinclude */
INC_MAX
};