-
Notifications
You must be signed in to change notification settings - Fork 193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
uint64 maps to unsigned long long #201
Conversation
Previously article mapped uint64 to `unsigned long` which is synonymous with `unsigned int`.
articles/142_idl.md
Outdated
@@ -99,7 +99,7 @@ the DDS-XTypes specification 1.2 defines it with 16-bit. | |||
| int32 | int | | |||
| uint32 | unsigned int | | |||
| int64 | long | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should int64
be correspondingly long long
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The |
(u)int32 types are called `long` not `int` in IDL. Also `int64` is `long long` not `long`
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rescinding my previous approval ;)
|
Previously article mapped uint64 to
unsigned long
which is synonymous withunsigned int
.