Commit 6a86d20
committed
Fixed case giving incorrect 'File ended in the middle of a comment block' warning
Test case:
```.c++
/// class
class T
{
public:
/// Some text
/// \code{.cpp}
/// int func() {}
/// \endcode{.cpp}
int func() {}
};
```
Cause is the extra `{.cpp}` after `\endcode` which is incorrect, but should
not cause the rest of the code to be skipped.1 parent fd23262 commit 6a86d20
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
705 | 705 | | |
706 | 706 | | |
707 | 707 | | |
708 | | - | |
| 708 | + | |
709 | 709 | | |
710 | 710 | | |
711 | 711 | | |
| |||
0 commit comments