[PATCH] D49552: Add a Microsoft Demangler library and utility.
Zachary Turner via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 19 09:36:31 PDT 2018
zturner added inline comments.
================
Comment at: llvm/lib/Demangle/MicrosoftDemangle.cpp:274
+ // special name @[0-9]. This is a storage for the first 10 BackReferences.
+ StringView BackReferences[10];
+ size_t BackRefCount = 0;
----------------
majnemer wrote:
> std::array?
This is one of those cases where I wasn't sure how much of STL I could use, so I decided against it.
https://reviews.llvm.org/D49552
More information about the llvm-commits
mailing list