Skip to content

Commit

Permalink
update .gitignore and makefile to disable 'ptr -> uint32_t' warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkinben committed Jan 28, 2022
1 parent d9d9b19 commit 10d6e19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ tinydb
mydb.db
lex.yy.c
*.tab.h
*.tab.c
*.tab.c
vendor
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CC=clang -Wall
CC=clang -Wall -Wno-pointer-to-int-cast
build:
$(CC) main.c -o tinydb
clean:
Expand Down

0 comments on commit 10d6e19

Please sign in to comment.