Skip to content

Commit d77d2f1

Browse files
committed
Fix doxygen doc
1 parent f17d472 commit d77d2f1

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

modules/core/include/visp3/core/vpThread.h

+6-4
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,9 @@ class VP_DEPRECATED vpThread
8888
/*!
8989
Construct a thread object that represents a new joinable thread of
9090
execution. The new thread of execution calls \e fn passing \e args as
91-
arguments. \param fn : A pointer to a function. \param args : Arguments
92-
passed to the call to \e fn (if any).
91+
arguments.
92+
\param fn : A pointer to a function.
93+
\param args : Arguments passed to the call to \e fn (if any).
9394
*/
9495
vpThread(vpThread::Fn fn, vpThread::Args args = nullptr) : m_handle(), m_isCreated(false), m_isJoinable(false)
9596
{
@@ -98,8 +99,9 @@ class VP_DEPRECATED vpThread
9899

99100
/*!
100101
Creates a thread object that represents a new joinable thread of
101-
execution. \param fn : A pointer to a function. \param args : Arguments
102-
passed to the call to \e fn (if any).
102+
execution.
103+
\param fn : A pointer to a function.
104+
\param args : Arguments passed to the call to \e fn (if any).
103105
*/
104106
void create(vpThread::Fn fn, vpThread::Args args = nullptr)
105107
{

0 commit comments

Comments
 (0)