Fix compile error uncovered by Clang 3.8.

This commit is contained in:
sephiroth99 2015-09-25 23:50:05 -04:00
parent 049ca6de42
commit 9dfabba583
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class ElfModule : public xe::cpu::Module {
bool loaded() const { return loaded_; }
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_; }
bool Load(const std::string& name, const std::string& path,