From 476044b4947632ba2b03bc368a513cba55cb1103 Mon Sep 17 00:00:00 2001 From: Tomasz Kramkowski Date: Thu, 2 May 2024 21:04:36 +0100 Subject: Makefile: Add support for generating compile_flags.txt This helps tools like clangd understand where the header files are such that they can be used to navigate the codebase quickly and easily. --- include/stem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/stem.h') diff --git a/include/stem.h b/include/stem.h index f4aff54..06f7351 100644 --- a/include/stem.h +++ b/include/stem.h @@ -55,7 +55,7 @@ typedef struct PARSER_STRUCT { /*! @brief Index of current character */ int i; /*! @brief The current character */ - char c; + int c; } parser_t; /*! @brief This structure is to be used in singly linked lists that hold -- cgit