summaryrefslogtreecommitdiff
path: root/src/core/arm/dyncom
diff options
context:
space:
mode:
authorGravatar bunnei2015-04-14 19:13:33 -0400
committerGravatar bunnei2015-04-14 19:13:33 -0400
commit46ea6944c3f637efee013ecc4ac65fd4985031a8 (patch)
tree803f60fa0ed6e8c244f3e0b4eef30b37a61f8e2f /src/core/arm/dyncom
parentMerge pull request #683 from bunnei/thread-priority (diff)
parentCore_ARM11: Replace debug prints with our own logging functions in vfpsingle. (diff)
downloadyuzu-46ea6944c3f637efee013ecc4ac65fd4985031a8.tar.gz
yuzu-46ea6944c3f637efee013ecc4ac65fd4985031a8.tar.xz
yuzu-46ea6944c3f637efee013ecc4ac65fd4985031a8.zip
Merge pull request #697 from linkmauve/clang<3
Fix a few warnings as reported by clang 3.6
Diffstat (limited to 'src/core/arm/dyncom')
-rw-r--r--src/core/arm/dyncom/arm_dyncom.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom.h b/src/core/arm/dyncom/arm_dyncom.h
index 822b3bbb9..2488c879c 100644
--- a/src/core/arm/dyncom/arm_dyncom.h
+++ b/src/core/arm/dyncom/arm_dyncom.h
@@ -27,7 +27,7 @@ public:
27 27
28 void AddTicks(u64 ticks) override; 28 void AddTicks(u64 ticks) override;
29 29
30 void ResetContext(Core::ThreadContext& context, u32 stack_top, u32 entry_point, u32 arg); 30 void ResetContext(Core::ThreadContext& context, u32 stack_top, u32 entry_point, u32 arg) override;
31 void SaveContext(Core::ThreadContext& ctx) override; 31 void SaveContext(Core::ThreadContext& ctx) override;
32 void LoadContext(const Core::ThreadContext& ctx) override; 32 void LoadContext(const Core::ThreadContext& ctx) override;
33 33