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.
This commit is contained in:
Nathan Sidwell 2020-07-14 06:08:44 -07:00
parent 31dbaab57f
commit bf567bb3b3
2 changed files with 4 additions and 3 deletions

View file

@ -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)
{

View file

@ -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
};