mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
the end of life as we know it
int is new type R=r OCL=18023 CL=18023
This commit is contained in:
parent
0ed4576c6a
commit
c21d9a1ec9
16 changed files with 292 additions and 184 deletions
|
|
@ -164,7 +164,7 @@ export func atol(s string) (i int64, ok bool) {
|
|||
|
||||
export func atoi(s string) (i int, ok bool) {
|
||||
ii, okok := atol(s);
|
||||
i = int32(ii);
|
||||
i = int(ii);
|
||||
return i, okok
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue