fix docs build

This commit is contained in:
Andrzej Krzemienski
2022-05-23 22:32:36 +02:00
parent ec677383dc
commit a514ce627d
2 changed files with 10 additions and 10 deletions

View File

@ -1429,7 +1429,7 @@ struct hash<boost::optional<T&> > ;
The specialization `hash<optional<T>>`` is enabled if and only if
`hash<remove_­const_­t<T>> is enabled. When enabled, for an object `o`
of type `optional<T>``, if `o.has_­value() == true`, then `hash<optional<T>>()(o)`
of type `optional<T>`, if `o.has_­value() == true`, then `hash<optional<T>>()(o)`
evaluates to the same value as `hash<remove_­const_­t<T>>()(*o)``; otherwise it
evaluates to an unspecified value.
The member functions are not guaranteed to be `noexcept`.