mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
renamed Byte to byte
This commit is contained in:
@@ -308,7 +308,7 @@ when not defined(JS) and not defined(NimrodVM):
|
||||
include "system/hti"
|
||||
|
||||
type
|
||||
Byte* = uint8 ## this is an alias for ``uint8``, that is an unsigned
|
||||
byte* = uint8 ## this is an alias for ``uint8``, that is an unsigned
|
||||
## int 8 bits wide.
|
||||
|
||||
Natural* = range[0..high(int)]
|
||||
|
||||
@@ -34,7 +34,7 @@ const
|
||||
|
||||
type
|
||||
PPointer = ptr pointer
|
||||
TByteArray = array[0..1000_0000, Byte]
|
||||
TByteArray = array[0..1000_0000, byte]
|
||||
PByte = ptr TByteArray
|
||||
PString = ptr string
|
||||
|
||||
|
||||
Reference in New Issue
Block a user