From 5348cdbda874af771ed74381b70c99cd6aad8deb Mon Sep 17 00:00:00 2001 From: JW Date: Mon, 12 Apr 2021 23:13:05 -0700 Subject: [PATCH] Fix small typo in macro name. 'k' -> 'K' --- include/foonathan/memory/detail/free_list.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/foonathan/memory/detail/free_list.hpp b/include/foonathan/memory/detail/free_list.hpp index 0dfb0eb7..74222cdd 100644 --- a/include/foonathan/memory/detail/free_list.hpp +++ b/include/foonathan/memory/detail/free_list.hpp @@ -201,7 +201,7 @@ namespace foonathan void swap(ordered_free_memory_list& a, ordered_free_memory_list& b) noexcept; -#if FOONATHAN_MEMORY_DEBUG_DOUBLE_DEALLOC_CHECk +#if FOONATHAN_MEMORY_DEBUG_DOUBLE_DEALLOC_CHECK // use ordered version to allow pointer check using node_free_memory_list = ordered_free_memory_list; using array_free_memory_list = ordered_free_memory_list;