================
@@ -318,8 +318,8 @@ class Symbol : public SymbolContextScope {
 
   void SynthesizeNameIfNeeded() const;
 
-  uint32_t m_uid =
-      UINT32_MAX;           // User ID (usually the original symbol table 
index)
+  uint32_t m_uid = LLDB_INVALID_SYMBOL_ID; // User ID (usually the original
----------------
adrian-prantl wrote:

It would be nice to convert these comments to Doxygen at one point.

```
int32_t m_uid = LLDB_INVALID_SYMBOL_ID; // User ID (usually the original index).
```
or
```
/// User ID (usually the original index).
int32_t m_uid = LLDB_INVALID_SYMBOL_ID; 
```

https://github.com/llvm/llvm-project/pull/175545
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to