Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/xeus-python/xdebugger.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ namespace xpyt
using base_type = xeus::xdebugger_base;

debugger(xeus::xcontext& context,
const xeus::xconfiguration& config,
const xeus::xkernel_configuration& config,
const std::string& user_name,
const std::string& session_id,
const nl::json& debugger_config);
Expand Down Expand Up @@ -76,7 +76,7 @@ namespace xpyt

XEUS_PYTHON_API
std::unique_ptr<xeus::xdebugger> make_python_debugger(xeus::xcontext& context,
const xeus::xconfiguration& config,
const xeus::xkernel_configuration& config,
const std::string& user_name,
const std::string& session_id,
const nl::json& debugger_config);
Expand Down
4 changes: 2 additions & 2 deletions src/xdebugger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ using namespace std::placeholders;
namespace xpyt
{
debugger::debugger(xeus::xcontext& context,
const xeus::xconfiguration& config,
const xeus::xkernel_configuration& config,
const std::string& user_name,
const std::string& session_id,
const nl::json& debugger_config)
Expand Down Expand Up @@ -363,7 +363,7 @@ namespace xpyt
}

std::unique_ptr<xeus::xdebugger> make_python_debugger(xeus::xcontext& context,
const xeus::xconfiguration& config,
const xeus::xkernel_configuration& config,
const std::string& user_name,
const std::string& session_id,
const nl::json& debugger_config)
Expand Down
2 changes: 1 addition & 1 deletion src/xdebugpy_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace nl = nlohmann;
namespace xpyt
{
xdebugpy_client::xdebugpy_client(xeus::xcontext& context,
const xeus::xconfiguration& config,
const xeus::xkernel_configuration& config,
int socket_linger,
const xdap_tcp_configuration& dap_config,
const event_callback& cb)
Expand Down
2 changes: 1 addition & 1 deletion src/xdebugpy_client.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace xpyt
using event_callback = base_type::event_callback;

xdebugpy_client(xeus::xcontext& context,
const xeus::xconfiguration& config,
const xeus::xkernel_configuration& config,
int socket_linger,
const xdap_tcp_configuration& dap_config,
const event_callback& cb);
Expand Down
Loading