Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/boost/openmethod/initialize.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2301,7 +2301,7 @@ auto registry<Policies...>::finalize(Options... opts) -> void {
//! Release resources held by registry.
//!
//! `finalize` may be called to release any resources allocated by
//! @ref registry::initialize.
//! @ref boost::openmethod::initialize.
//!
//! @note
//! A translation unit that contains a call to `finalize` must include the
Expand Down
22 changes: 11 additions & 11 deletions include/boost/openmethod/preamble.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -714,12 +714,12 @@ template<class Registry>
struct VptrFn {
//! Register the v-table pointers.
//!
//! Called by @ref registry::initialize to let the policy store the v-table
//! pointer associated to each `type_id`.
//! Called by @ref boost::openmethod::initialize to let the policy store
//! the v-table pointer associated to each `type_id`.
//!
//! If this function, or another policy's `initialize`, throws, the
//! policy's `state` is restored to its previous value; see @ref
//! initialize.
//! policy's `state` is restored to its previous value; see
//! @ref boost::openmethod::initialize.
//!
//! @tparam Context A class that conforms to the @ref InitializeContext
//! blueprint.
Expand Down Expand Up @@ -814,8 +814,8 @@ struct TypeHashFn {
//! Initialize the hash table.
//!
//! If this function, or another policy's `initialize`, throws, the
//! policy's `state` is restored to its previous value; see @ref
//! initialize.
//! policy's `state` is restored to its previous value; see
//! @ref boost::openmethod::initialize.
//!
//! @tparam Context A class that conforms to the @ref InitializeContext
//! blueprint.
Expand Down Expand Up @@ -889,8 +889,8 @@ struct OutputFn {
//! Policy for writing diagnostics and trace.
//!
//! If an `output` policy is present, the default error handler uses it to write
//! error messages to its output stream. @ref registry::initialize can also use
//! it to write trace messages.
//! error messages to its output stream. @ref boost::openmethod::initialize
//! can also use it to write trace messages.
//!
//! @par Requirements
//!
Expand Down Expand Up @@ -1307,9 +1307,9 @@ class registry : public detail::registry_base {

//! A pointer to the virtual table for a registered class.
//!
//! `static_vptr` is set by @ref registry::initialize to the address of the
//! class' virtual table. It remains valid until the next call to
//! `initialize` or `finalize`.
//! `static_vptr` is set by @ref boost::openmethod::initialize to the
//! address of the class' virtual table. It remains valid until the next
//! call to `initialize` or `finalize`.
//!
//! @tparam Class A registered class.
template<class Class>
Expand Down
Loading