Skip to content

Commit 92a5bfc

Browse files
committed
Fix broken links in documentation
Fixes #191. See doxygen/doxygen#10721.
1 parent 0f5ebe9 commit 92a5bfc

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

doc/adapters_storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Allocator adapters and storage classes
1+
# Allocator adapters and storage classes {#md_doc_adapters_storage}
22

33
In addition to the various allocator classes, it also provides a couple of adapters and storage classes for [RawAllocator] instances.
44

doc/concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Concepts and overall requirements
1+
# Concepts and overall requirements {#md_doc_concepts}
22

33
## Node
44
<a name="concept_node"></a>

doc/debug_error.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Debugging options and error handling
1+
# Debugging options and error handling {#md_doc_debug_error}
22

33
## Error handling
44

doc/external_usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Using RawAllocators in STL containers, smart pointers, etc.
1+
# Using RawAllocators in STL containers, smart pointers, etc. {#md_doc_external_usage}
22

33
## 1. Using Containers with RawAllocators
44

doc/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Installation
1+
# Installation {#md_doc_installation}
22

33
This library can either be used [CMake]'s `add_subdirectory()` command or installed globally.
44

doc/internal_usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Writing classes using a RawAllocator
1+
# Writing classes using a RawAllocator {#md_doc_internal_usage}
22

33
Compared to the requirements an `AllocatorAwareContainer` has to fulfill,
44
it is very easy to use a `RawAllocator` in a container.

doc/options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CMake options for configuring the library
1+
# CMake options for configuring the library {#md_doc_options}
22

33
When installing the library, each build type (`-DCMAKE_BUILD_TYPE=XXX`) allows a separate configuration.
44
The configuration doesn't affect your targets, you can link to any configuration (your compiler might complain though, if you link your debug target to a library compiled in release mode or vice-versa).

doc/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Tutorial
1+
# Tutorial {#md_doc_tutorial}
22

33
## Installation and Setup
44

@@ -15,4 +15,4 @@
1515

1616
* [Writing own RawAllocator classes](md_doc_writing_allocators.html)
1717
* [Debugging options and error handling](md_doc_debug_error.html)
18-
* [Concepts](md_doc_concepts.html)
18+
* [Concepts](md_doc_concepts.html)

doc/writing_allocators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Writing own RawAllocator classes
1+
# Writing own RawAllocator classes {#md_doc_writing_allocators}
22

33
There are, in general, three different ways and one special case to write a [RawAllocator] class.
44
See the link for the exact requirements and behavior for each function.

0 commit comments

Comments
 (0)