[clang] [clang-tools-extra] [Sema][clangd] add noexcept to override functions during code completion (PR #75937)
Shafik Yaghmour via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 9 19:24:17 PST 2024
================
@@ -183,7 +184,7 @@ class ResultBuilder {
/// Overloaded C++ member functions found by SemaLookup.
/// Used to determine when one overload is dominated by another.
- llvm::DenseMap<std::pair<DeclContext *, /*Name*/uintptr_t>, ShadowMapEntry>
+ llvm::DenseMap<std::pair<DeclContext *, /*Name*/ uintptr_t>, ShadowMapEntry>
----------------
shafik wrote:
```suggestion
llvm::DenseMap<std::pair<DeclContext *, /*Name=*/uintptr_t>, ShadowMapEntry>
```
https://github.com/llvm/llvm-project/pull/75937
More information about the cfe-commits
mailing list