tidy: minor doc improvements + String::share() with explicit mm
This commit is contained in:
parent
07b6cc949f
commit
9761688cfe
4 changed files with 13 additions and 1 deletions
|
|
@ -9,9 +9,13 @@
|
|||
|
||||
namespace xo {
|
||||
namespace fn {
|
||||
/** callback set using unique pointers to store callbacks **/
|
||||
template <typename NativeFn>
|
||||
using UpCallbackSet = CallbackSetImpl<std::unique_ptr<NativeFn>>;
|
||||
|
||||
/** callback set that invokes a specific member function on
|
||||
* registered callback objects.
|
||||
**/
|
||||
template <typename NativeFn, typename MemberFn>
|
||||
requires(callback_concept<NativeFn>)
|
||||
class UpNotifyCallbackSet : public UpCallbackSet<NativeFn> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue