dexonsmith requested changes to this revision. dexonsmith added inline comments. This revision now requires changes to proceed.
================ Comment at: clang/lib/Frontend/CompilerInvocation.cpp:287 +static void +denormalizeString(SmallVectorImpl<const char *> &Args, const char *Spelling, + CompilerInvocation::StringAllocator SA, unsigned, T &&Value) { ---------------- jansvoboda11 wrote: > We should keep an eye on the number of instantiations of this function > template (and `normalizeStringIntegral`). > > If it grows, we can employ the SFINAE trick used for > `makeFlagToValueNormalizer`. Does it work to take the parameter as a `Twine` to avoid the template? ``` static void denormalizeString(SmallVectorImpl<const char *> &Args, const char *Spelling, CompilerInvocation::StringAllocator SA, unsigned, Twine Value) { Args.push_back(Spelling); Args.push_back(SA(Value)); } ``` Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D84186/new/ https://reviews.llvm.org/D84186 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits