tschuett added inline comments.

================
Comment at: lldb/tools/debugserver/source/RNBRemote.cpp:6264
                                  major_version, minor_version, patch_version);
-        if (platform) {
+        if (platform.has_value()) {
           os_handled = true;
----------------
Nit: the `has_value()`is redundant. optional has boolean conversion.


================
Comment at: lldb/tools/debugserver/source/RNBRemote.cpp:6266
           os_handled = true;
-          rep << "ostype:" << platform << ";";
+          rep << "ostype:" << platform.value() << ";";
           break;
----------------
Maybe `*platform` works.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D136719

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

Reply via email to