From 0e86d7af9bfaec340e2ee9937a9624dabc11b12d Mon Sep 17 00:00:00 2001 From: Ben Adams Date: Fri, 20 Oct 2017 01:44:50 +0100 Subject: [PATCH] Fix jit fromatting --- src/jit/unwind.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jit/unwind.cpp b/src/jit/unwind.cpp index ff0c05c..643f15a 100644 --- a/src/jit/unwind.cpp +++ b/src/jit/unwind.cpp @@ -285,7 +285,7 @@ void Compiler::unwindEmitFuncCFI(FuncInfoDsc* func, void* pHotCode, void* pColdC eeAllocUnwindInfo((BYTE*)pHotCode, nullptr /* pColdCode */, startOffset, endOffset, unwindCodeBytes, pUnwindBlock, (CorJitFuncKind)func->funKind); - if (pColdCode != NULL) + if (pColdCode != nullptr) { assert(fgFirstColdBlock != nullptr); assert(func->funKind == FUNC_ROOT); // No splitting of funclets. -- 2.7.4