diff options
-rw-r--r-- | gcc/hash-map.h | 3 | ||||
-rw-r--r-- | gcc/incpath.h | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/gcc/hash-map.h b/gcc/hash-map.h index 5b8fd18..6bf3dc6 100644 --- a/gcc/hash-map.h +++ b/gcc/hash-map.h @@ -177,7 +177,8 @@ public: return !ins; } - /* if the passed in key is in the map return its value otherwise NULL. */ + /* If the passed in key is in the map return pointer to its value + otherwise NULL. */ Value *get (const Key &k) { 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 }; |