We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01ac8b3 commit 2ab4cfcCopy full SHA for 2ab4cfc
test/xmock_interpreter.cpp
@@ -20,6 +20,12 @@ namespace nl = nlohmann;
20
namespace xeus
21
{
22
23
+ xmock_interpreter::xmock_interpreter(const std::vector<const char*>& /*args*/)
24
+ : interpreter(0, nullptr)
25
+ {
26
+ // Arguments intentionally ignored in mock interpreter
27
+ }
28
+
29
void xmock_interpreter::configure_impl()
30
31
auto handle_comm_opened = [](xeus::xcomm&& comm, const xeus::xmessage&) {
test/xmock_interpreter.hpp
@@ -18,7 +18,7 @@ namespace xeus
18
19
public:
- xmock_interpreter() = default;
+ xmock_interpreter(const std::vector<std::string>& args);
virtual ~xmock_interpreter() = default;
0 commit comments