Page MenuHomePhabricator

[native] replace `uint` with `unsigned int`
ClosedPublic

Authored by kamil on Jul 12 2023, 6:21 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Mar 19, 3:23 PM
Unknown Object (File)
Sat, Mar 15, 6:10 PM
Unknown Object (File)
Tue, Mar 11, 5:21 PM
Unknown Object (File)
Thu, Mar 6, 1:54 AM
Unknown Object (File)
Wed, Mar 5, 5:15 PM
Unknown Object (File)
Tue, Mar 4, 5:53 PM
Unknown Object (File)
Tue, Mar 4, 5:53 PM
Unknown Object (File)
Tue, Mar 4, 5:53 PM
Subscribers

Details

Summary

Emscripten compiler (for some reason) does not recognize uint, and cause: error: use of undeclared identifier 'uint'; did you mean 'int'?

Depends on D8488

Test Plan

N/A

Diff Detail

Repository
rCOMM Comm
Branch
wasm-native
Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

kamil held this revision as a draft.
kamil published this revision for review.Jul 12 2023, 7:37 AM

Seems like unsigned int is the official type, and uint is typedefs by some compilers automatically

This revision is now accepted and ready to land.Jul 14 2023, 2:27 AM
This revision was automatically updated to reflect the committed changes.