aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/Loaders/Elf/ElfSymbol.cs')
-rw-r--r--src/Ryujinx.HLE/Loaders/Elf/ElfSymbol.cs36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol.cs b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol.cs
index 1cfc0bdc..1ed61b2c 100644
--- a/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol.cs
+++ b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol.cs
@@ -4,32 +4,32 @@ namespace Ryujinx.HLE.Loaders.Elf
{
public string Name { get; private set; }
- public ElfSymbolType Type { get; private set; }
- public ElfSymbolBinding Binding { get; private set; }
+ public ElfSymbolType Type { get; private set; }
+ public ElfSymbolBinding Binding { get; private set; }
public ElfSymbolVisibility Visibility { get; private set; }
- public bool IsFuncOrObject => Type == ElfSymbolType.SttFunc || Type == ElfSymbolType.SttObject;
- public bool IsGlobalOrWeak => Binding == ElfSymbolBinding.StbGlobal || Binding == ElfSymbolBinding.StbWeak;
+ public readonly bool IsFuncOrObject => Type == ElfSymbolType.SttFunc || Type == ElfSymbolType.SttObject;
+ public readonly bool IsGlobalOrWeak => Binding == ElfSymbolBinding.StbGlobal || Binding == ElfSymbolBinding.StbWeak;
- public int ShIdx { get; private set; }
+ public int ShIdx { get; private set; }
public ulong Value { get; private set; }
- public ulong Size { get; private set; }
+ public ulong Size { get; private set; }
public ElfSymbol(
string name,
- int info,
- int other,
- int shIdx,
- ulong value,
- ulong size)
+ int info,
+ int other,
+ int shIdx,
+ ulong value,
+ ulong size)
{
- Name = name;
- Type = (ElfSymbolType)(info & 0xf);
- Binding = (ElfSymbolBinding)(info >> 4);
+ Name = name;
+ Type = (ElfSymbolType)(info & 0xf);
+ Binding = (ElfSymbolBinding)(info >> 4);
Visibility = (ElfSymbolVisibility)other;
- ShIdx = shIdx;
- Value = value;
- Size = size;
+ ShIdx = shIdx;
+ Value = value;
+ Size = size;
}
}
-} \ No newline at end of file
+}