From 542252489c1abd0e89bbb649ec13e10756f036df Mon Sep 17 00:00:00 2001 From: 3lswear Date: Fri, 7 Jan 2022 01:02:23 +0300 Subject: [PATCH] build: run with no leaks --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 24cb7ea..f659bb5 100644 --- a/Makefile +++ b/Makefile @@ -36,6 +36,6 @@ re: $(MAKE) all run: $(NAME) - ./$(NAME) + ASAN_OPTIONS=detect_leaks=0 ./$(NAME) .PHONY: all clean fclean re