File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
source/MetadataProcessor.Core/Tables Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ public nanoByteCodeTable(
62
62
public ushort NextMethodId { get { return ( ushort ) _methods . Count ; } }
63
63
64
64
/// <summary>
65
- /// Temporary string table for code generators used duing initial load.
65
+ /// Temporary string table for code generators used during initial load.
66
66
/// </summary>
67
67
public nanoStringTable FakeStringTable { get { return _fakeStringTable ; } }
68
68
Original file line number Diff line number Diff line change @@ -66,8 +66,8 @@ static nanoSignaturesTable()
66
66
PrimitiveTypes . Add ( typeof ( bool ) . FullName , nanoCLR_DataType . DATATYPE_BOOLEAN ) ;
67
67
68
68
PrimitiveTypes . Add ( typeof ( object ) . FullName , nanoCLR_DataType . DATATYPE_OBJECT ) ;
69
- PrimitiveTypes . Add ( typeof ( IntPtr ) . FullName , nanoCLR_DataType . DATATYPE_VALUETYPE ) ;
70
- // PrimitiveTypes.Add(typeof(UIntPtr).FullName, nanoCLR_DataType.DATATYPE_U4);
69
+ PrimitiveTypes . Add ( typeof ( IntPtr ) . FullName , nanoCLR_DataType . DATATYPE_I4 ) ;
70
+ PrimitiveTypes . Add ( typeof ( UIntPtr ) . FullName , nanoCLR_DataType . DATATYPE_U4 ) ;
71
71
72
72
PrimitiveTypes . Add ( "System.WeakReference" , nanoCLR_DataType . DATATYPE_WEAKCLASS ) ;
73
73
}
You can’t perform that action at this time.
0 commit comments