From 2cf550a80a0177f8a1aa9ae45c40b0d17ef7f11d Mon Sep 17 00:00:00 2001 From: Adrian Prantl Date: Tue, 20 Dec 2022 10:05:40 -0800 Subject: [PATCH] Add missing textual header to module map --- clang/include/clang/module.modulemap | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/clang/include/clang/module.modulemap b/clang/include/clang/module.modulemap index 227beaf..c182da1 100644 --- a/clang/include/clang/module.modulemap +++ b/clang/include/clang/module.modulemap @@ -94,7 +94,10 @@ module Clang_Diagnostics { requires cplusplus module All { header "Basic/AllDiagnostics.h" export * } - module Analysis { header "Analysis/AnalysisDiagnostic.h" export * } + module Analysis { + header "Analysis/AnalysisDiagnostic.h" export * + textual header "Analysis/Analyses/UnsafeBufferUsageGadgets.def" + } module AST { header "AST/ASTDiagnostic.h" export * } module Comment { header "AST/CommentDiagnostic.h" export * } module Driver { header "Driver/DriverDiagnostic.h" export * } -- 2.7.4