Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
I thought about using signed ints for Minimum and Maximum in the style, but then, we won't be able to use -1 for Maximum the same way as now and signed int makes no sense for Minimum...
clang/lib/Format/BreakableToken.cpp | ||
---|---|---|
799–800 | Not strictly necessary, but without the cast we have a signed/unsigned mismatch warning on comparison. |
Not strictly necessary, but without the cast we have a signed/unsigned mismatch warning on comparison.