SamrudhNelli wrote:

> can you upload a version of the test with all the lines being -NEXT around 
> this part? It would help us determine what the problem could be.
>
A line being empty after the `Value` header for enums with no comments was due 
to this code.
```
                <th>Name</th>
                <th>Value</th>
                {{#HasComments}}
                <th>Comments</th>
                {{/HasComments}} 
```
The extra newline for enums with no comments can be fixed with this..
```
                <th>Name</th>
                <th>Value</th>{{#HasComments}}
                <th>Comments</th>{{/HasComments}}
```

https://github.com/llvm/llvm-project/pull/183085
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to