[C++11] Use 'nullptr'. Frontend edition.

llvm-svn: 209389
This commit is contained in:
Craig Topper
2014-05-22 04:46:25 +00:00
parent c3a73c3087
commit 49a2790fb3
19 changed files with 165 additions and 160 deletions

View File

@@ -1955,7 +1955,7 @@ createVFSFromCompilerInvocation(const CompilerInvocation &CI,
}
IntrusiveRefCntPtr<vfs::FileSystem> FS =
vfs::getVFSFromYAML(Buffer.release(), /*DiagHandler*/0);
vfs::getVFSFromYAML(Buffer.release(), /*DiagHandler*/nullptr);
if (!FS.getPtr()) {
Diags.Report(diag::err_invalid_vfs_overlay) << File;
return IntrusiveRefCntPtr<vfs::FileSystem>();