[clang] [clang-tools-extra] [libcxx] [clang][Modules] Remove unnecessary includes of `Module.h` (PR #93417)
David Stone via cfe-commits
cfe-commits at lists.llvm.org
Fri May 31 08:43:21 PDT 2024
================
@@ -159,7 +159,8 @@ class APINotesManager {
ArrayRef<APINotesReader *> getCurrentModuleReaders() const {
bool HasPublic = CurrentModuleReaders[ReaderKind::Public];
bool HasPrivate = CurrentModuleReaders[ReaderKind::Private];
- assert((!HasPrivate || HasPublic) && "private module requires public module");
+ assert((!HasPrivate || HasPublic) &&
+ "private module requires public module");
----------------
davidstone wrote:
OK, I set my VS Code to just format changed lines, looks like I have it working now.
https://github.com/llvm/llvm-project/pull/93417
More information about the cfe-commits
mailing list