[Lldb-commits] [lldb] [llvm] [lldb] Update StreamGDBRemote to support llvm::ArrayRef (PR #203175)
Felipe de Azevedo Piovezan via lldb-commits
lldb-commits at lists.llvm.org
Thu Jun 11 08:15:11 PDT 2026
================
@@ -4592,7 +4592,8 @@ GDBRemoteCommunicationServerLLGS::Handle_jAcceleratorPluginInitialize(
accelerator_actions.push_back(std::move(*actions));
}
StreamGDBRemote response;
- response.PutAsJSONArray(accelerator_actions, /*hex_ascii=*/false);
+ response.PutAsJSONArray<AcceleratorActions>(accelerator_actions,
----------------
felipepiovezan wrote:
Doesn't ArrayRef have all the necessary template deduction guides?
https://github.com/llvm/llvm-project/pull/203175
More information about the lldb-commits
mailing list