Commit 01144ed9 by Ben Clayton

third_party/cppdap: Roll forward to 1fd23dda

Changes: 1fd23dd Add license checker config and kokoro presubmit 1e5ec3e Change dap::integer backing type to int64_t 7b02b9f Add dap::initialize() and terminate() functions c9630a9 TypeOf: Move Move TypeInfos to anon namespace ed0af8f Add lots more tests for dap::any. 9d3f5c8 clang: Enable -Weverything, fix all warnings bb3dbcd Update DAP protocol to 1.41.0 f0c28f9 Fix moves of any when value isInBuffer 2f607e0 Fix deadlock closing socket on another thread 9003ee5 Socket: Use the RWMutex to fix TSAN error 53a62fd Add dap::RWMutex. A read / write mutex. 78dd3ab CMake: Handle building fuzzer with sanitizers 13c9e7d Implement timeouts for dap::Socket::connect 261d62d Remove unnecessary virtual inheritance aeb6614 json_serializer: Disable exceptions 773f0df Add support for fuzzing cppdap cc93ba9 Add the ability to derive message types from one another. c918748 Fix short reads in ContentReader::buffer() ad9b458 Fix `dap::Socket::read()` when `recv()` errors 9e31344 Kokoro Ubuntu: Switch to docker image 4bc690c Update DAP protocol to Version 1.40 Bug: b/145351270 Change-Id: I33bef298d558a3b4a484d5efc317494d4dc26c96 Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/48949 Kokoro-Result: kokoro <noreply+kokoro@google.com> Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com> Tested-by: 's avatarBen Clayton <bclayton@google.com>
parent b3c1e71e
...@@ -142,8 +142,8 @@ Server::Impl::Impl(const std::shared_ptr<Context> &context, int port) ...@@ -142,8 +142,8 @@ Server::Impl::Impl(const std::shared_ptr<Context> &context, int port)
for(size_t i = 0; i < numBreakpoints; i++) for(size_t i = 0; i < numBreakpoints; i++)
{ {
auto &reqBP = breakpoints[i]; auto &reqBP = breakpoints[i];
Location location{ file, reqBP.line }; Location location{ file, static_cast<int>(reqBP.line) };
file->addBreakpoint(reqBP.line); file->addBreakpoint(location.line);
bool verified = false; bool verified = false;
ctx->clientEventBroadcast()->onSetBreakpoint(location, verified); ctx->clientEventBroadcast()->onSetBreakpoint(location, verified);
......
Subproject commit 4dcca5775616ada2796ff7f84c3a4843eee9b506 Subproject commit 1fd23dda91e01550be1a421de307e6fedb2035a9
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment