From 7d302264ffcb9e5f0bc5dce9f016f993aaf76608 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sun, 7 Jun 2026 23:11:49 +0200 Subject: [PATCH] Fix doxygen syntax errors. --- include/boost/container/devector.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/container/devector.hpp b/include/boost/container/devector.hpp index 81f1185..a728430 100644 --- a/include/boost/container/devector.hpp +++ b/include/boost/container/devector.hpp @@ -334,14 +334,14 @@ class devector * iterator does not meet the forward iterator requirements, `T` shall also be [MoveInsertable] * into `*this`. * - * **Postcondition**: `size() == boost::container::iterator_distance(first, last) + * **Postcondition**: `size() == boost::container::iterator_distance(first, last)` * * **Exceptions**: Strong exception guarantee. * * **Complexity**: Makes only `N` calls to the copy constructor of `T` (where `N` is the distance between `first` * and `last`), at most one allocation and no reallocations if iterators first and last are of forward, * bidirectional, or random access categories. It makes `O(N)` calls to the copy constructor of `T` - * and `O(log(N)) reallocations if they are just input iterators. + * and `O(log(N))` reallocations if they are just input iterators. * * **Remarks**: Each iterator in the range `[first,last)` shall be dereferenced exactly once, * unless an exception is thrown. @@ -1935,7 +1935,7 @@ class devector * **Complexity**: Linear in the size of `*this` and `N` (where `N` is the distance between `first` and `last`). * Makes only `N` calls to the constructor of `T` and no reallocations if iterators `first` and `last` * are of forward, bidirectional, or random access categories. It makes 2N calls to the copy constructor of `T` - * and `O(log(N)) reallocations if they are just input iterators. + * and `O(log(N))` reallocations if they are just input iterators. * * **Exceptions**: Strong exception guarantee if `T` is `NothrowConstructible` * and `NothrowAssignable`, Basic exception guarantee otherwise.