[clang-tidy] Work around failure in Darwin.

llvm-svn: 245517
This commit is contained in:
Alexander Kornienko 2015-08-19 23:03:23 +00:00
parent 0ee6ce1c52
commit 87d89d2be1
1 changed files with 1 additions and 1 deletions

View File

@ -442,7 +442,7 @@ private:
UseNullptrCheck::UseNullptrCheck(StringRef Name, ClangTidyContext *Context)
: ClangTidyCheck(Name, Context) {
StringRef MacrosStr = Options.get("NullMacros", "");
StringRef MacrosStr = Options.get("NullMacros", "NULL");
MacrosStr.split(NullMacros, ",");
}