Add fmt::detail::buffer to the docs (#704)
This commit is contained in:
parent
ea1cd9638c
commit
c5ed73aab2
@ -273,6 +273,9 @@ Utilities
|
||||
|
||||
.. doxygenfunction:: fmt::join(It, It, string_view)
|
||||
|
||||
.. doxygenclass:: fmt::detail::buffer
|
||||
:members:
|
||||
|
||||
.. doxygenclass:: fmt::basic_memory_buffer
|
||||
:protected-members:
|
||||
:members:
|
||||
|
@ -627,7 +627,12 @@ using has_formatter =
|
||||
|
||||
namespace detail {
|
||||
|
||||
/** A contiguous memory buffer with an optional growing ability. */
|
||||
/**
|
||||
\rst
|
||||
A contiguous memory buffer with an optional growing ability. It is an internal
|
||||
class and shouldn't be used directly, only via `~fmt::basic_memory_buffer`.
|
||||
\endrst
|
||||
*/
|
||||
template <typename T> class buffer {
|
||||
private:
|
||||
T* ptr_;
|
||||
|
Loading…
Reference in New Issue
Block a user