Browse Source

fesvr: target_args() should return a const

pull/1273/head
Jerry Zhao 3 years ago
parent
commit
6c018d2e56
  1. 2
      fesvr/htif.h

2
fesvr/htif.h

@ -63,7 +63,7 @@ class htif_t : public chunked_memif_t
virtual void idle() {} virtual void idle() {}
const std::vector<std::string>& host_args() { return hargs; } const std::vector<std::string>& host_args() { return hargs; }
std::vector<std::string>& target_args() { return targs; } const std::vector<std::string>& target_args() { return targs; }
reg_t get_entry_point() { return entry; } reg_t get_entry_point() { return entry; }

Loading…
Cancel
Save