Skip to content

Commit

Permalink
Fix compile error uncovered by Clang 3.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
sephiroth99 committed Sep 26, 2015
1 parent 049ca6d commit 9dfabba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xenia/cpu/elf_module.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 9dfabba

Please sign in to comment.