Skip to content

Commit 69bb8cf

Browse files
committed
signal.h: Correct some strange comment formatting.
1 parent 4824bb5 commit 69bb8cf

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

sigc++/signal.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -359,8 +359,8 @@ struct signal_emit<void, void, T_arg...>
359359

360360
public:
361361

362-
/** Executes a list of slots using an accumulator of type @e T_accumulator. * The arguments are
363-
* passed directly on to the slots.
362+
/** Executes a list of slots using an accumulator of type @e T_accumulator.
363+
* The arguments are passed directly on to the slots.
364364
* @param a Arguments to be passed on to the slots.
365365
*/
366366
static decltype(auto) emit(const std::shared_ptr<internal::signal_impl>& impl, type_trait_take_t<T_arg>... a)
@@ -398,7 +398,8 @@ struct signal_emit<void, void, T_arg...>
398398
*
399399
* The following template arguments are used:
400400
* - @e T_return The desired return type for the emit() function (may be overridden by the
401-
* accumulator). * - @e T_arg Argument types used in the definition of emit().
401+
* accumulator).
402+
* - @e T_arg Argument types used in the definition of emit().
402403
* - @e T_accumulator The accumulator type used for emission. The default
403404
* @p void means that no accumulator should be used, for example if signal
404405
* emission returns the return value of the last slot invoked.

0 commit comments

Comments
 (0)