summaryrefslogtreecommitdiffstats
path: root/examples
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 /examples
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.
Diffstat (limited to 'examples')
-rw-r--r--examples/memgrp.cpp4
1 files changed, 2 insertions, 2 deletions
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();