ARM64: Make getters within ArithOption const.

This commit is contained in:
Lioncash 2014-09-12 20:43:06 -04:00
parent 64b21a4812
commit a92003c1ab
1 changed files with 2 additions and 2 deletions

View File

@ -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)
{