diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-11-30 23:57:11 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-11-30 23:57:11 +0100 |
commit | b147427aa16309657856bd9ec6ef50c60b241e18 (patch) | |
tree | b708fe6671953b311b9a891496970caa6d927999 /tests | |
parent | 88b859c0d1a377d584bda4fb74846ec19a7b958f (diff) | |
download | mig-b147427aa16309657856bd9ec6ef50c60b241e18.tar.gz mig-b147427aa16309657856bd9ec6ef50c60b241e18.tar.bz2 mig-b147427aa16309657856bd9ec6ef50c60b241e18.zip |
Make string_t always use const_string_t
This will allow to relieve constraints in callers, e.g. dir_lookup("") would
otherwise produce a warning with gcc-11 since char[1024] would mean that
dir_lookup would read all 1024 characters while it is not.
* utils.c (UserVarQualifier): Also use const_ qualifier when type is
string_t.
* tests/includes/types.h (const_string_t): New type.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/includes/types.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/includes/types.h b/tests/includes/types.h index 0bb914c..c8c3afd 100644 --- a/tests/includes/types.h +++ b/tests/includes/types.h @@ -29,6 +29,7 @@ typedef struct char_struct { } char_struct_t; typedef char* string_t; +typedef const char* const_string_t; static inline int8_t int_to_int8(int n) { return (int8_t) n; |