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 f683c8d commit dadb940Copy full SHA for dadb940
src/Edward/proxy_supervisor.cpp
@@ -199,7 +199,7 @@ struct SerializeData *ProxySupervisor::serializeRFC(RFC *callee) {
199
}
200
201
void ProxySupervisor::deserializeRFCResult(RFC *rfc) {
202
- nlohmann::basic_json<> call_result = this->readReply(); // blocking
+ nlohmann::basic_json<> call_result = this->readReply(rfc); // blocking
203
rfc->success = *call_result.find("success");
204
205
if (rfc->type->result_count == 0) {
src/Interpreter/interpreter.h
@@ -57,8 +57,6 @@ class Interpreter {
57
58
static void report_overflow(Module *m, uint8_t *maddr);
59
60
- virtual ~Interpreter();
61
-
62
protected:
63
private:
64
};
0 commit comments