================
@@ -33,7 +33,7 @@ int main(int argc, char const *argv[]) {
   if (foo == nullptr) {
     fprintf(stderr, "%s\n", dlerror());
     exit(2);
-  }
+  } // end of foo check
----------------
SLTozer wrote:

I can make this change, but other comments used for setting breakpoints in the 
same file follow this "minimal" convention, e.g.
```
  return 12 + i; // break 12
  return 14 + i; // break 14
  foo(12); // before loop
    int x = twelve(i) + thirteen(i) + a::fourteen(i); // break loop
```
I'll add `break` as a prefix to match most of the other cases, though I'm also 
happy to just rewrite the string following your suggestion if you think that 
would be better.

https://github.com/llvm/llvm-project/pull/149133
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to