diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2017-03-13 14:42:47 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2017-03-13 14:42:47 +0000 |
commit | 7d21a3d2c3ffc24c68eed2d3f3e1843d1bb66a7d (patch) | |
tree | e11844fc0bd21801786724bcf1a4259c965db06c /clang/docs/tools | |
parent | 78aa27004110fe9179512d93fb1b1e5fed8b02b8 (diff) | |
download | bcm5719-llvm-7d21a3d2c3ffc24c68eed2d3f3e1843d1bb66a7d.tar.gz bcm5719-llvm-7d21a3d2c3ffc24c68eed2d3f3e1843d1bb66a7d.zip |
[clang-format] Add more examples and fix a bug in the py generation script
Reviewers: djasper
Reviewed By: djasper
Subscribers: cfe-commits, klimek
Differential Revision: https://reviews.llvm.org/D30860
llvm-svn: 297623
Diffstat (limited to 'clang/docs/tools')
-rwxr-xr-x | clang/docs/tools/dump_format_style.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/docs/tools/dump_format_style.py b/clang/docs/tools/dump_format_style.py index d65024fdbab..81a5af6ef42 100755 --- a/clang/docs/tools/dump_format_style.py +++ b/clang/docs/tools/dump_format_style.py @@ -64,7 +64,7 @@ class NestedField: self.comment = comment.strip() def __str__(self): - return '* ``%s`` %s' % (self.name, doxygen2rst(self.comment)) + return '\n* ``%s`` %s' % (self.name, doxygen2rst(self.comment)) class Enum: def __init__(self, name, comment): |