s/NULL/nullptr/ in OrcTestCommon.h to silence -Wsentinel in clang-cl

llvm-svn: 235386
This commit is contained in:
Reid Kleckner 2015-04-21 15:56:21 +00:00
parent 0e6d6d54ce
commit ab9d97c89a
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}
};