[libcxx-commits] [PATCH] D107712: Fix possible infinite loop in itanium demangler
Mikhail Borisov via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Sun Aug 8 03:48:15 PDT 2021
borman added inline comments.
================
Comment at: llvm/include/llvm/Demangle/ItaniumDemangle.h:112-229
+template <class T, size_t N>
+class PODSmallVector {
+ static_assert(std::is_pod<T>::value,
+ "T is required to be a plain old data type");
+
+ T* First = nullptr;
+ T* Last = nullptr;
----------------
I could submit this change as a NFC to clean up the actual patch; however the move itself would be out of context.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D107712/new/
https://reviews.llvm.org/D107712
More information about the libcxx-commits
mailing list