summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2017-07-06 13:03:57 +0200
committerMurray Cumming <murrayc@murrayc.com>2017-07-21 08:20:58 +0200
commit69bb8cffe8d286e6c53a05e758af2a5d4dd6882e (patch)
treea88afae94e5a7bbb4d3d762dcf025e80bf352d99
parent4824bb537db4c5946ff495a4a9461aa99b43675a (diff)
downloadsigc++-69bb8cffe8d286e6c53a05e758af2a5d4dd6882e.tar.gz
signal.h: Correct some strange comment formatting.
-rw-r--r--sigc++/signal.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/sigc++/signal.h b/sigc++/signal.h
index c666617..3403e57 100644
--- a/sigc++/signal.h
+++ b/sigc++/signal.h
@@ -359,8 +359,8 @@ private:
public:
- /** Executes a list of slots using an accumulator of type @e T_accumulator. * The arguments are
- * passed directly on to the slots.
+ /** Executes a list of slots using an accumulator of type @e T_accumulator.
+ * The arguments are passed directly on to the slots.
* @param a Arguments to be passed on to the slots.
*/
static decltype(auto) emit(const std::shared_ptr<internal::signal_impl>& impl, type_trait_take_t<T_arg>... a)
@@ -398,7 +398,8 @@ public:
*
* The following template arguments are used:
* - @e T_return The desired return type for the emit() function (may be overridden by the
- * accumulator). * - @e T_arg Argument types used in the definition of emit().
+ * accumulator).
+ * - @e T_arg Argument types used in the definition of emit().
* - @e T_accumulator The accumulator type used for emission. The default
* @p void means that no accumulator should be used, for example if signal
* emission returns the return value of the last slot invoked.