From a92003c1ab08e17bf28e3397255e2ad1f8a6e322 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 12 Sep 2014 20:43:06 -0400 Subject: [PATCH] ARM64: Make getters within ArithOption const. --- Source/Core/Common/Arm64Emitter.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Common/Arm64Emitter.h b/Source/Core/Common/Arm64Emitter.h index a60b453fdc..6baa2f8705 100644 --- a/Source/Core/Common/Arm64Emitter.h +++ b/Source/Core/Common/Arm64Emitter.h @@ -241,11 +241,11 @@ public: else m_width = WIDTH_32BIT; } - TypeSpecifier GetType() + TypeSpecifier GetType() const { return m_type; } - u32 GetData() + u32 GetData() const { switch (m_type) {