-
Notifications
You must be signed in to change notification settings - Fork 233
Remove unnecessary redefinitions of uint*_t types #219
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
Open
ptrcnull
wants to merge
1
commit into
asg017:main
Choose a base branch
from
ptrcnull:stdint
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while the spec (ISO 9899:1999, 7.18.1.1) makes these typedefs optional, in practice they are defined in <stdint.h> for all supported platforms; types u_int*_t are BSDisms and might not exist, making the typedefs fail with `error: unknown type name ‘u_int8_t’`, e.g. on Solaris or musl libc
lando-prod-mozilla bot
pushed a commit
to mozilla-firefox/firefox
that referenced
this pull request
May 13, 2025
moz-v2v-gh
pushed a commit
to mozilla/gecko-dev
that referenced
this pull request
May 14, 2025
gecko-dev-updater
pushed a commit
to marco-c/gecko-dev-wordified-and-comments-removed
that referenced
this pull request
May 14, 2025
see also: https://phabricator.services.mozilla.com/D247229#8557917 asg017/sqlite-vec#219 Differential Revision: https://phabricator.services.mozilla.com/D248399 UltraBlame original commit: 98761001f9bde7c92c1a50a78328ac3993929563
gecko-dev-updater
pushed a commit
to marco-c/gecko-dev-comments-removed
that referenced
this pull request
May 14, 2025
see also: https://phabricator.services.mozilla.com/D247229#8557917 asg017/sqlite-vec#219 Differential Revision: https://phabricator.services.mozilla.com/D248399 UltraBlame original commit: 98761001f9bde7c92c1a50a78328ac3993929563
gecko-dev-updater
pushed a commit
to marco-c/gecko-dev-wordified
that referenced
this pull request
May 14, 2025
see also: https://phabricator.services.mozilla.com/D247229#8557917 asg017/sqlite-vec#219 Differential Revision: https://phabricator.services.mozilla.com/D248399 UltraBlame original commit: 98761001f9bde7c92c1a50a78328ac3993929563
i3roly
pushed a commit
to i3roly/firefox-dynasty
that referenced
this pull request
May 15, 2025
ziyao233
pushed a commit
to ziyao233/eweos-packages
that referenced
this pull request
May 31, 2025
Add a downstream patch to fix building failures of third-party library sqlite-vec. Link: asg017/sqlite-vec#219 Reference: https://bugzilla.mozilla.org/show_bug.cgi?id=1962061 Reference: https://bugzilla.mozilla.org/show_bug.cgi?id=1964446
ziyao233
pushed a commit
to eweOS/packages
that referenced
this pull request
May 31, 2025
Add a downstream patch to fix building failures of third-party library sqlite-vec. Link: asg017/sqlite-vec#219 Reference: https://bugzilla.mozilla.org/show_bug.cgi?id=1962061 Reference: https://bugzilla.mozilla.org/show_bug.cgi?id=1964446
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
while the spec (ISO 9899:1999, 7.18.1.1) makes these typedefs optional, in practice they are defined in <stdint.h> for all supported platforms
meanwhile, types u_int*_t are BSDisms and might not exist, making the typedefs fail with
error: unknown type name ‘u_int8_t’
, e.g. on Solaris or musl libc