Skip to content

Commit dadb940

Browse files
committed
Fix compilation
1 parent f683c8d commit dadb940

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/Edward/proxy_supervisor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ struct SerializeData *ProxySupervisor::serializeRFC(RFC *callee) {
199199
}
200200

201201
void ProxySupervisor::deserializeRFCResult(RFC *rfc) {
202-
nlohmann::basic_json<> call_result = this->readReply(); // blocking
202+
nlohmann::basic_json<> call_result = this->readReply(rfc); // blocking
203203
rfc->success = *call_result.find("success");
204204

205205
if (rfc->type->result_count == 0) {

src/Interpreter/interpreter.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ class Interpreter {
5757

5858
static void report_overflow(Module *m, uint8_t *maddr);
5959

60-
virtual ~Interpreter();
61-
6260
protected:
6361
private:
6462
};

0 commit comments

Comments
 (0)