Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
tolauwae committed Nov 26, 2024
1 parent f683c8d commit dadb940
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/Edward/proxy_supervisor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ struct SerializeData *ProxySupervisor::serializeRFC(RFC *callee) {
}

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

if (rfc->type->result_count == 0) {
Expand Down
2 changes: 0 additions & 2 deletions src/Interpreter/interpreter.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ class Interpreter {

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

virtual ~Interpreter();

protected:
private:
};

0 comments on commit dadb940

Please sign in to comment.