diff options
Diffstat (limited to 'clang-tools-extra/clang-tidy/fuchsia/RestrictSystemIncludesCheck.cpp')
-rw-r--r-- | clang-tools-extra/clang-tidy/fuchsia/RestrictSystemIncludesCheck.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/clang-tidy/fuchsia/RestrictSystemIncludesCheck.cpp b/clang-tools-extra/clang-tidy/fuchsia/RestrictSystemIncludesCheck.cpp index 08981fce0f5..98d317bea37 100644 --- a/clang-tools-extra/clang-tidy/fuchsia/RestrictSystemIncludesCheck.cpp +++ b/clang-tools-extra/clang-tidy/fuchsia/RestrictSystemIncludesCheck.cpp @@ -103,7 +103,7 @@ void RestrictedIncludesPPCallbacks::EndOfMainFile() { void RestrictSystemIncludesCheck::registerPPCallbacks( const SourceManager &SM, Preprocessor *PP, Preprocessor *ModuleExpanderPP) { PP->addPPCallbacks( - llvm::make_unique<RestrictedIncludesPPCallbacks>(*this, SM)); + std::make_unique<RestrictedIncludesPPCallbacks>(*this, SM)); } void RestrictSystemIncludesCheck::storeOptions( |