diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-05-10 15:43:57 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-05-10 15:43:57 -0400 |
commit | 2d6d2f2cf838dc459bc1ef27476a26af5d82a53f (patch) | |
tree | cf5cee5288f85440e878fd643d1bfef0160d0beb /src/config.h | |
parent | 3929ddedca049ac6f9dcbe88f85233b6ec1a415a (diff) | |
download | bfs-2d6d2f2cf838dc459bc1ef27476a26af5d82a53f.tar.xz |
config: s/BFS_UNINIT/uninit/
Diffstat (limited to 'src/config.h')
-rw-r--r-- | src/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.h b/src/config.h index aa54491..b9f2638 100644 --- a/src/config.h +++ b/src/config.h @@ -162,9 +162,9 @@ * Initialize a variable, unless sanitizers would detect uninitialized uses. */ #if __has_feature(memory_sanitizer) -# define BFS_UNINIT(var, value) var +# define uninit(var, value) var #else -# define BFS_UNINIT(var, value) value +# define uninit(var, value) value #endif // Wrappers for attributes |