zyounan added inline comments.

================
Comment at: clang-tools-extra/clangd/InlayHints.cpp:267
     StructuredBindingPolicy = TypeHintPolicy;
     StructuredBindingPolicy.PrintCanonicalTypes = true;
   }
----------------
`PrintCanonicalTypes` turns on printing default template arguments, which would 
prevent the patch from printing, e.g., `std::basic_string<char>`, within the 
default length limitation.

```
std::map<std::string, int> Map;

for (auto &[Key, Value] : Map) // Key: basic_string<char, char_traits<char>, 
allocator<char>>, whose length exceeds the default threshold.

```

Is it safe to drop it now? I believe this patch can handle the case the comment 
mentioned.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D151785/new/

https://reviews.llvm.org/D151785

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to