diff options
author | albert-github <albert.tests@gmail.com> | 2018-07-12 12:19:00 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-07-12 12:19:00 (GMT) |
commit | 858d65a9cd7b9b7cf71da01098f47d583b3322f5 (patch) | |
tree | 965217503677442e224e80549bee3d0aea3a7857 /testing | |
parent | 5b735d5118581e3bca686f79de341b8b2e76691f (diff) | |
parent | 56c60e84e6dd6d7e4e7774be24d1402782fd3230 (diff) | |
download | Doxygen-858d65a9cd7b9b7cf71da01098f47d583b3322f5.zip Doxygen-858d65a9cd7b9b7cf71da01098f47d583b3322f5.tar.gz Doxygen-858d65a9cd7b9b7cf71da01098f47d583b3322f5.tar.bz2 |
Merge branch 'feature/bug_tableofcontents_latex' of https://github.com/albert-github/doxygen into feature/bug_tableofcontents_latex
Diffstat (limited to 'testing')
-rw-r--r-- | testing/015/015__cond_8c.xml | 4 | ||||
-rw-r--r-- | testing/015_cond.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/testing/015/015__cond_8c.xml b/testing/015/015__cond_8c.xml index 43cf335..bcc18b5 100644 --- a/testing/015/015__cond_8c.xml +++ b/testing/015/015__cond_8c.xml @@ -11,15 +11,17 @@ <briefdescription> </briefdescription> <detaileddescription> + <para>Function to be shown. </para> </detaileddescription> <inbodydescription> </inbodydescription> - <location file="015_cond.c" line="20" column="1" bodyfile="015_cond.c" bodystart="20" bodyend="22"/> + <location file="015_cond.c" line="21" column="1" bodyfile="015_cond.c" bodystart="21" bodyend="23"/> </memberdef> </sectiondef> <briefdescription> </briefdescription> <detaileddescription> + <para>Text <emphasis>argument</emphasis> more text. </para> </detaileddescription> <location file="015_cond.c"/> </compounddef> diff --git a/testing/015_cond.c b/testing/015_cond.c index ab3044c..0ac209d 100644 --- a/testing/015_cond.c +++ b/testing/015_cond.c @@ -1,4 +1,4 @@ -// objective: test the \cond command +// objective: test the `cond` command // check: 015__cond_8c.xml // config: ENABLED_SECTIONS = COND_ENABLED @@ -17,12 +17,14 @@ void func(); /// \endcond /// \cond COND_ENABLED +/// Function to be shown. void cond_enabled() { } /// \endcond /** \cond COND_DISABLED */ + Function not to be shown. void cond_disabled() { } |