diff options
author | bunnei <bunneidev@gmail.com> | 2015-01-02 21:04:49 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-01-02 21:04:49 -0500 |
commit | 3d9bf134399665124b3d3c65d7357c177bf2097e (patch) | |
tree | bb679ab15b8a8bb10947f6332e943e59d7d70ad0 /src/core/loader/elf.cpp | |
parent | bd8949b8c24600d51a59d5e8e91de54394a65004 (diff) | |
parent | bf23f945713f5e40ba4f96a2a279a6da2d516ba3 (diff) |
Merge pull request #391 from lioncash/pedantic
archive/elf: Minor misc changes.
Diffstat (limited to 'src/core/loader/elf.cpp')
-rw-r--r-- | src/core/loader/elf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/elf.cpp b/src/core/loader/elf.cpp index 354335014..3ca60c072 100644 --- a/src/core/loader/elf.cpp +++ b/src/core/loader/elf.cpp @@ -222,7 +222,7 @@ public: int GetSectionSize(SectionID section) const { return sections[section].sh_size; } SectionID GetSectionByName(const char *name, int firstSection = 0) const; //-1 for not found - bool DidRelocate() { + bool DidRelocate() const { return relocate; } }; |