harec

[hare] Hare compiler, written in C11 for POSIX OSs
Log | Files | Refs | README | LICENSE

commit 7c79272d61984f430f7e04845d684555a4189782
parent 851e04fdde28d78393e34e0d68e1fb4fe9060138
Author: Sebastian <sebastian@sebsite.pw>
Date:   Tue, 11 Oct 2022 22:03:49 -0400

type_store: make typeflags static

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Msrc/type_store.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/type_store.c b/src/type_store.c @@ -11,7 +11,7 @@ #include "util.h" // XXX: This needs to be updated on updates to type_flags (types.h) -const unsigned int typeflags[] = { +static const unsigned int typeflags[] = { 0, TYPE_CONST, TYPE_ERROR,