summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-08-02 15:59:20 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-08-02 15:59:20 (GMT)
commitb0a9f75cc1894e8261ec2e95fa171a5534a65328 (patch)
tree539d4a5f5cd445fefde13589ee11f36b76ba4358
parentf16a63d6d5d9fd11a2f1c57bdfad7f1d4b175f0e (diff)
downloadDoxygen-b0a9f75cc1894e8261ec2e95fa171a5534a65328.zip
Doxygen-b0a9f75cc1894e8261ec2e95fa171a5534a65328.tar.gz
Doxygen-b0a9f75cc1894e8261ec2e95fa171a5534a65328.tar.bz2
warning: Member func2InGroup1() (function) of class Memgrp_Test is not documented.
Correcting code due to the fact that `//@{` isn't seen by doxygen as block start (#7116). Thi s problem is shown when generating the doxygen documentation.
-rw-r--r--doc/commands.doc2
-rw-r--r--examples/memgrp.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/commands.doc b/doc/commands.doc
index 6c8b696..48991fb 100644
--- a/doc/commands.doc
+++ b/doc/commands.doc
@@ -849,7 +849,7 @@ Structural indicators
This command turns a comment block into a header
definition of a member group. The
comment block should be followed by a
- <code>//\@{ ... //\@}</code> block containing the
+ <code>///\@{ ... ///\@}</code> block containing the
members of the group.
See section \ref memgroup for an example.
diff --git a/examples/memgrp.cpp b/examples/memgrp.cpp
index 9a24774..fdcf028 100644
--- a/examples/memgrp.cpp
+++ b/examples/memgrp.cpp
@@ -2,11 +2,11 @@
class Memgrp_Test
{
public:
- //@{
+ ///@{
/** Same documentation for both members. Details */
void func1InGroup1();
void func2InGroup1();
- //@}
+ ///@}
/** Function without group. Details. */
void ungroupedFunction();