Skip to content

Commit 068004d

Browse files
committed
Merge branch 'string-whackamole' of github.com:jonmeow/carbon-lang into string-whackamole
2 parents cf257aa + 9ee8f45 commit 068004d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

toolchain/check/call.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
namespace Carbon::Check {
2121

2222
namespace {
23-
// Entity kinds for the diagnostic. Converted to an int for a select.
23+
// Entity kinds, for diagnostics. Converted to an int for a select.
2424
enum class EntityKind : uint8_t {
25-
Function,
26-
GenericClass,
27-
GenericInterface,
25+
Function = 0,
26+
GenericClass = 1,
27+
GenericInterface = 2,
2828
};
2929
} // namespace
3030

0 commit comments

Comments
 (0)