Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/MetadataProcessor.Core/Tables/nanoByteCodeTable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public nanoByteCodeTable(
public ushort NextMethodId { get { return (ushort)_methods.Count; } }

/// <summary>
/// Temporary string table for code generators used duing initial load.
/// Temporary string table for code generators used during initial load.
/// </summary>
public nanoStringTable FakeStringTable { get { return _fakeStringTable; } }

Expand Down
4 changes: 2 additions & 2 deletions source/MetadataProcessor.Core/Tables/nanoSignaturesTable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ static nanoSignaturesTable()
PrimitiveTypes.Add(typeof(bool).FullName, nanoCLR_DataType.DATATYPE_BOOLEAN);

PrimitiveTypes.Add(typeof(object).FullName, nanoCLR_DataType.DATATYPE_OBJECT);
PrimitiveTypes.Add(typeof(IntPtr).FullName, nanoCLR_DataType.DATATYPE_VALUETYPE);
//PrimitiveTypes.Add(typeof(UIntPtr).FullName, nanoCLR_DataType.DATATYPE_U4);
PrimitiveTypes.Add(typeof(IntPtr).FullName, nanoCLR_DataType.DATATYPE_I4);
PrimitiveTypes.Add(typeof(UIntPtr).FullName, nanoCLR_DataType.DATATYPE_U4);

PrimitiveTypes.Add("System.WeakReference", nanoCLR_DataType.DATATYPE_WEAKCLASS);
}
Expand Down