From e78199e8a0a9ce15958439567b1e62b66e07cd29 Mon Sep 17 00:00:00 2001 From: Jean-Louis Leroy Date: Sat, 25 Oct 2025 14:05:43 -0400 Subject: [PATCH] fix virtual_type doc --- include/boost/openmethod/core.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/boost/openmethod/core.hpp b/include/boost/openmethod/core.hpp index 8b5ede9..c81a85b 100644 --- a/include/boost/openmethod/core.hpp +++ b/include/boost/openmethod/core.hpp @@ -2810,10 +2810,10 @@ template struct VirtualTraits { //! Class to use for dispatch. //! - //! This is the class that is used during method dispatch to determine which - //! overrider to select, and which type_id to use for error reporting. - //! `virtual_type` aliases to `Class` if `T` is `Class&`, `const - //! Class&`, `Class\*`, `const Class\*`, `virtual_ptr`, + //! Aliases to the class to be considered during method dispatch to determine + //! which overrider to select, and which type_id to use for error reporting. + //! `virtual_traits::virtual_type` aliases to `Class` if `T` is `Class&`, + //! `const Class&`, `Class*`, `const Class*`, `virtual_ptr`, //! `virtual_ptr`, `std::shared_ptr`, //! `std::shared_ptr`, `virtual_ptr>`, //! etc.