[libcxx-commits] [PATCH] D112374: [clang] Implement ElaboratedType sugaring for types written bare
Matheus Izvekov via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Sun Jul 17 08:52:15 PDT 2022
mizvekov marked an inline comment as done.
mizvekov added inline comments.
================
Comment at: clang/lib/Sema/TypeLocBuilder.cpp:159
- assert(Capacity - Index == TypeLoc::getFullDataSizeForType(T) &&
+ unsigned FDSz = TypeLoc::getFullDataSizeForType(T);
+ assert(Capacity - Index == FDSz &&
----------------
chapuni wrote:
> It causes a warning with -Asserts. May be rolled back.
Thanks! fixed in latest rebase.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D112374/new/
https://reviews.llvm.org/D112374
More information about the libcxx-commits
mailing list