mirror of
https://github.com/fmtlib/fmt.git
synced 2025-01-11 21:38:05 +00:00
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)
|
.. doxygenfunction:: fmt::join(It, It, string_view)
|
||||||
|
|
||||||
|
.. doxygenclass:: fmt::detail::buffer
|
||||||
|
:members:
|
||||||
|
|
||||||
.. doxygenclass:: fmt::basic_memory_buffer
|
.. doxygenclass:: fmt::basic_memory_buffer
|
||||||
:protected-members:
|
:protected-members:
|
||||||
:members:
|
:members:
|
||||||
|
@ -627,7 +627,12 @@ using has_formatter =
|
|||||||
|
|
||||||
namespace detail {
|
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 {
|
template <typename T> class buffer {
|
||||||
private:
|
private:
|
||||||
T* ptr_;
|
T* ptr_;
|
||||||
|
Loading…
Reference in New Issue
Block a user