diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-06-10 09:15:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-10 09:15:32 (GMT) |
commit | 4536982bdebc0056d0c5d64a12881f20b5801c06 (patch) | |
tree | c9a34b73cb1edf03f2a0daf831ff50970b965309 /testing | |
parent | 55735feae7530d1650b95f96d33448d64076f476 (diff) | |
parent | f7663cf300375b4ec8d8fe052f3da48782743919 (diff) | |
download | Doxygen-4536982bdebc0056d0c5d64a12881f20b5801c06.zip Doxygen-4536982bdebc0056d0c5d64a12881f20b5801c06.tar.gz Doxygen-4536982bdebc0056d0c5d64a12881f20b5801c06.tar.bz2 |
Merge pull request #714 from albert-github/feature/bug_test_cond
Problem with \cond in normal comment of test 015
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() { } |