From 17b6c662f2f60ad2e5522694df32bde9e71c7725 Mon Sep 17 00:00:00 2001 From: Vitaly Buka Date: Wed, 11 Sep 2019 23:19:48 +0000 Subject: Remove NOLINTs from compiler-rt git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@371687 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/scudo/scudo_errors.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/scudo') diff --git a/lib/scudo/scudo_errors.cpp b/lib/scudo/scudo_errors.cpp index 34e57bf71..4bea9ebc6 100644 --- a/lib/scudo/scudo_errors.cpp +++ b/lib/scudo/scudo_errors.cpp @@ -39,9 +39,10 @@ void NORETURN reportAllocationAlignmentNotPowerOfTwo(uptr Alignment) { } void NORETURN reportInvalidPosixMemalignAlignment(uptr Alignment) { - dieWithMessage("invalid alignment requested in posix_memalign: %zd, alignment" + dieWithMessage( + "invalid alignment requested in posix_memalign: %zd, alignment" " must be a power of two and a multiple of sizeof(void *) == %zd\n", - Alignment, sizeof(void *)); // NOLINT + Alignment, sizeof(void *)); } void NORETURN reportInvalidAlignedAllocAlignment(uptr Size, uptr Alignment) { -- cgit v1.2.1