From 3edafbad46a6089ccf72bb5cb07b42d0262ecb1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20M=C3=BCller?= Date: Wed, 11 Jan 2023 12:37:37 +0100 Subject: [PATCH] Fix broken documentation links --- doc/concepts.md | 3 ++- include/foonathan/memory/config.hpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/concepts.md b/doc/concepts.md index 629bf402..6546b1ac 100644 --- a/doc/concepts.md +++ b/doc/concepts.md @@ -160,6 +160,7 @@ i.e. allocate memory through the traits and deallocate through the member functi It is completely allowed that those functions do completely different things. ### Composable RawAllocator + A RawAllocator can be *composable*. Access to the composable (de)allocation functions is only done through the [composable_allocator_traits]. @@ -363,7 +364,7 @@ Expression|Semantics *Note*: Those tracking functions are also called after a succesful composable (de)allocation function. -A *deep tracker* also tracks a [BlockAllocator](#concept_block_allocator) of another allocator +A *deep tracker* also tracks a [BlockAllocator](#concept_blockallocator) of another allocator and thus allows monitoring the often more expensive big allocations done by it. Such a `Tracker` must provide the following additional functions: diff --git a/include/foonathan/memory/config.hpp b/include/foonathan/memory/config.hpp index 5156fac5..233caf6d 100644 --- a/include/foonathan/memory/config.hpp +++ b/include/foonathan/memory/config.hpp @@ -139,7 +139,7 @@ /// Set to `1` to disable automatic lifetime managment of the per-thread stack, /// requires managing it through the \ref foonathan::memory::temporary_stack_initializer. /// Set to `0` to disable the per-thread stack completely. -/// \ref get_temporary_stack() will abort the program upon call. +/// \ref foonathan::memory::get_temporary_stack() will abort the program upon call. /// \ingroup allocator #define FOONATHAN_MEMORY_TEMPORARY_STACK_MODE 2 #endif