Commit 7abaa29
committed
fix(kokoro-tts): drop backslash line-continuations in usage comment
The doxygen-style usage banner used trailing backslashes inside `//`
comments, which gcc treats as line-continuations and converts the
block into a single multi-line comment. With `-Werror=comment`
enabled (CI 3rd-party / ubuntu-24-llguidance), this fails:
tools/kokoro/tools/kokoro-tts.cpp:6:1: error: multi-line comment
Drop the backslashes — they were shell-style continuations that have
no meaning in C++ comments anyway. The usage line still reads fine
as plain text.1 parent 89f3c2e commit 7abaa29
1 file changed
Lines changed: 5 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
7 | | - | |
8 | | - | |
9 | | - | |
10 | | - | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| |||
0 commit comments