aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/ASTImporterSharedState.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang/AST/ASTImporterSharedState.h')
-rw-r--r--include/clang/AST/ASTImporterSharedState.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/ASTImporterSharedState.h b/include/clang/AST/ASTImporterSharedState.h
index 3635a62deef0..829eb1c611c3 100644
--- a/include/clang/AST/ASTImporterSharedState.h
+++ b/include/clang/AST/ASTImporterSharedState.h
@@ -47,7 +47,7 @@ public:
ASTImporterSharedState() = default;
ASTImporterSharedState(TranslationUnitDecl &ToTU) {
- LookupTable = llvm::make_unique<ASTImporterLookupTable>(ToTU);
+ LookupTable = std::make_unique<ASTImporterLookupTable>(ToTU);
}
ASTImporterLookupTable *getLookupTable() { return LookupTable.get(); }