Skip to content

Commit

Permalink
fix: add back brief-1.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
sdkrystian committed Jun 19, 2023
1 parent e0a82fb commit 9fe16c8
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 13 deletions.
39 changes: 39 additions & 0 deletions test-files/old-tests/brief-1.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
// Test the various ways the
// brief can be specified

#if 0
/**brief
*/
void f1();

/** brief
*/
void f2();

/** brief
continued
*/
void f3();

/** pre

@brief brief

post
*/
void f4();
#endif

/** brief @b bold it
continues to the line.
*/
void f5();

/** brief
many lined
@b bold
what will
happen?
*/
void f6();
27 changes: 14 additions & 13 deletions test-files/old-tests/brief-1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,31 @@
<mrdox xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://github.com/cppalliance/mrdox/raw/develop/mrdox.rnc">
<namespace name="">
<function name="f5" id="RnDTZyCZuSqydMEPutN0yG4E/xg=">
<file path="brief-1.cpp" line="30"/>
<doc>
<brief>
<text> brief</text>
<bold>bold</bold>
<text> it</text>
<text>continues to the line.</text>
</brief>
</doc>
</function>
<function name="f6" id="NEkWCLiknLGzCD6JnXuBTSAAne8=">
<file path="brief-1.cpp" line="39"/>
<doc>
<brief>
<text>brief</text>
<text> brief</text>
</brief>
<para>
<text>many lined</text>
<text> many lined</text>
<text></text>
<bold>bold</bold>
<text> what will</text>
<text> happen?</text>
</para>
</doc>
</function>
<function name="f5" id="RnDTZyCZuSqydMEPutN0yG4E/xg=">
<file path="brief-1.cpp" line="30"/>
<doc>
<brief>
<text>brief</text>
<bold>bold</bold>
<text> it</text>
<text>continues to the line.</text>
</brief>
</doc>
</function>
</namespace>
</mrdox>

0 comments on commit 9fe16c8

Please sign in to comment.