diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2019-07-17 03:42:16 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-17 03:42:16 -0300 |
commit | c3218c110fcdd25c2dfb3847ec86e09eed62457c (patch) | |
tree | d224f1c5d92cfd0e404f14613d764fc7de67c4e9 /src/core/core.h | |
parent | b56e7f870add41d0300745342d24315e8fa3f881 (diff) | |
parent | 093e5440e202931402129acabcb73426079552a8 (diff) |
Merge pull request #2726 from lioncash/access
core: Remove CurrentArmInterface() global accessor
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/core.h b/src/core/core.h index 11e73278e..8ebb385ac 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -327,10 +327,6 @@ private: static System s_instance; }; -inline ARM_Interface& CurrentArmInterface() { - return System::GetInstance().CurrentArmInterface(); -} - inline Kernel::Process* CurrentProcess() { return System::GetInstance().CurrentProcess(); } |