summaryrefslogtreecommitdiff
path: root/src/core/loader/elf.cpp
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2016-09-20 23:52:38 -0700
committerGravatar Yuri Kunde Schlesner2016-09-21 00:15:56 -0700
commit84fbbe26297652d994d203bde543ec252c2d801a (patch)
tree5f6fcc088dab9d53ee30e64b47fce2e04c8fb13c /src/core/loader/elf.cpp
parentRemove empty newlines in #include blocks. (diff)
downloadyuzu-84fbbe26297652d994d203bde543ec252c2d801a.tar.gz
yuzu-84fbbe26297652d994d203bde543ec252c2d801a.tar.xz
yuzu-84fbbe26297652d994d203bde543ec252c2d801a.zip
Use negative priorities to avoid special-casing the self-include
Diffstat (limited to 'src/core/loader/elf.cpp')
-rw-r--r--src/core/loader/elf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/elf.cpp b/src/core/loader/elf.cpp
index 0f4148a59..8eb5200ab 100644
--- a/src/core/loader/elf.cpp
+++ b/src/core/loader/elf.cpp
@@ -2,7 +2,6 @@
2// Licensed under GPLv2 or any later version 2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "core/loader/elf.h"
6#include <cstring> 5#include <cstring>
7#include <memory> 6#include <memory>
8#include <string> 7#include <string>
@@ -12,6 +11,7 @@
12#include "common/symbols.h" 11#include "common/symbols.h"
13#include "core/hle/kernel/process.h" 12#include "core/hle/kernel/process.h"
14#include "core/hle/kernel/resource_limit.h" 13#include "core/hle/kernel/resource_limit.h"
14#include "core/loader/elf.h"
15#include "core/memory.h" 15#include "core/memory.h"
16 16
17using Kernel::SharedPtr; 17using Kernel::SharedPtr;