(strings)
| 126 | |
| 127 | |
| 128 | def MaxWidth(strings): |
| 129 | max_width = 0 |
| 130 | for s in strings: |
| 131 | max_width = max(max_width, len(s)) |
| 132 | return max_width |
| 133 | |
| 134 | |
| 135 | def GenerateCompileCommandsAndBuild(build_dir, out): |
no test coverage detected
searching dependent graphs…