Skip to content

Commit 4aa5816

Browse files
committed
Fix wrapping of multiline strings
Was broken by git-clang-format which is not aware of string concatenation.
1 parent 2f0abfe commit 4aa5816

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

clang/include/clang/StaticAnalyzer/Checkers/Checkers.td

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -334,9 +334,8 @@ let ParentPackage = Nullability in {
334334

335335
def NullReturnedFromNonnullChecker
336336
: Checker<"NullReturnedFromNonnull">,
337-
HelpText<
338-
"Warns when a null pointer is returned from a function that has "
339-
"_Nonnull return type.">,
337+
HelpText<"Warns when a null pointer is returned from a function that "
338+
"has _Nonnull return type.">,
340339
Documentation<HasDocumentation>;
341340

342341
def NullableDereferencedChecker
@@ -346,16 +345,14 @@ let ParentPackage = Nullability in {
346345

347346
def NullablePassedToNonnullChecker
348347
: Checker<"NullablePassedToNonnull">,
349-
HelpText<
350-
"Warns when a nullable pointer is passed to a pointer which has a "
351-
"_Nonnull type.">,
348+
HelpText<"Warns when a nullable pointer is passed to a pointer which "
349+
"has a _Nonnull type.">,
352350
Documentation<HasDocumentation>;
353351

354352
def NullableReturnedFromNonnullChecker
355353
: Checker<"NullableReturnedFromNonnull">,
356354
HelpText<"Warns when a nullable pointer is returned from a function "
357-
"that has "
358-
"_Nonnull return type.">,
355+
"that has _Nonnull return type.">,
359356
Documentation<NotDocumented>;
360357

361358
} // end "nullability"

0 commit comments

Comments
 (0)