forked from OSchip/llvm-project
s/NULL/nullptr/ in OrcTestCommon.h to silence -Wsentinel in clang-cl
llvm-svn: 235386
This commit is contained in:
parent
0e6d6d54ce
commit
ab9d97c89a
|
@ -55,7 +55,8 @@ namespace llvm {
|
|||
class TypeBuilder<DummyStruct, XCompile> {
|
||||
public:
|
||||
static StructType *get(LLVMContext &Context) {
|
||||
return StructType::get(TypeBuilder<types::i<32>[256], XCompile>::get(Context), NULL);
|
||||
return StructType::get(
|
||||
TypeBuilder<types::i<32>[256], XCompile>::get(Context), nullptr);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue