File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lldb/unittests/TestingSupport/Host Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ class TestTransport final
4646 m_dummy_file = std::move (*dummy_file);
4747 }
4848
49- llvm::Error Send (const Proto::Evt &evt) override {
49+ llvm::Error Send (const typename Proto::Evt &evt) override {
5050 EXPECT_TRUE (m_loop && m_handler)
5151 << " Send called before RegisterMessageHandler" ;
5252 m_loop->AddPendingCallback ([this , evt](lldb_private::MainLoopBase &) {
@@ -55,7 +55,7 @@ class TestTransport final
5555 return llvm::Error::success ();
5656 }
5757
58- llvm::Error Send (const Proto::Req &req) override {
58+ llvm::Error Send (const typename Proto::Req &req) override {
5959 EXPECT_TRUE (m_loop && m_handler)
6060 << " Send called before RegisterMessageHandler" ;
6161 m_loop->AddPendingCallback ([this , req](lldb_private::MainLoopBase &) {
@@ -64,7 +64,7 @@ class TestTransport final
6464 return llvm::Error::success ();
6565 }
6666
67- llvm::Error Send (const Proto::Resp &resp) override {
67+ llvm::Error Send (const typename Proto::Resp &resp) override {
6868 EXPECT_TRUE (m_loop && m_handler)
6969 << " Send called before RegisterMessageHandler" ;
7070 m_loop->AddPendingCallback ([this , resp](lldb_private::MainLoopBase &) {
You can’t perform that action at this time.
0 commit comments