Fix compile error uncovered by Clang 3.8.
This commit is contained in:
parent
049ca6de42
commit
9dfabba583
|
@ -30,7 +30,7 @@ class ElfModule : public xe::cpu::Module {
|
||||||
|
|
||||||
bool loaded() const { return loaded_; }
|
bool loaded() const { return loaded_; }
|
||||||
uint32_t entry_point() const { return entry_point_; }
|
uint32_t entry_point() const { return entry_point_; }
|
||||||
const std::string& name() const { return name_; }
|
const std::string& name() const override { return name_; }
|
||||||
const std::string& path() const { return path_; }
|
const std::string& path() const { return path_; }
|
||||||
|
|
||||||
bool Load(const std::string& name, const std::string& path,
|
bool Load(const std::string& name, const std::string& path,
|
||||||
|
|
Loading…
Reference in New Issue