Opened 12 years ago
Closed 12 years ago
#5458 closed Bugs (fixed)
typo document : is_virtual_base_of
Reported by: | Owned by: | John Maddock | |
---|---|---|---|
Milestone: | To Be Determined | Component: | type_traits |
Version: | Boost 1.47.0 | Severity: | Problem |
Keywords: | Cc: |
Description
this rows is same.
is_virtual_base_of<Base, Derived>::value is an integral constant expression that evaluates to true. is_virtual_base_of<Base, Derived>::value is an integral constant expression that evaluates to true.
should be:
is_virtual_base_of<Base, Derived>::value is an integral constant expression that evaluates to true. is_virtual_base_of<Base, Base>::value is an integral constant expression that evaluates to true.
Note:
See TracTickets
for help on using tickets.
(In [71222]) Fix misc typos and regenerate docs. Fixes #5457. Fixes #5458. Fixes #5459. Fixes #5460. Fixes #5461.