Remove generated Inventor/system/inttypes header#5
Merged
Conversation
tritao
force-pushed
the
remove-inttypes-header
branch
from
July 9, 2026 13:41
cad729d to
1de5665
Compare
tritao
force-pushed
the
remove-inttypes-header
branch
from
July 9, 2026 14:00
1de5665 to
d383623
Compare
tritao
marked this pull request as ready for review
July 9, 2026 17:15
Lgt2x
approved these changes
Jul 9, 2026
Member
|
bumped somewhere in FC? |
This was referenced Jul 9, 2026
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
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.
This removes the generated
include/Inventor/system/inttypes.hcompatibility header and the associated configure/build plumbing.Coin now exposes the standard fixed-width and size-related types from
Inventor/C/basic.hvia<stdint.h>and<stddef.h>, which already sits underSbBasic.hand the public C API headers. The few implementation-only cases that need more than that keep direct standard includes locally:<inttypes.h>forSCN*macros<sys/types.h>whereoff_tis usedWhy
Inventor/system/inttypes.his legacy compatibility machinery that we do not need anymore. We can just assume the standard headers exist and stop carrying a generated wrapper plus all the related configure/install logic.This also keeps the public header cleanup centralized instead of spreading direct
<stdint.h>includes across the API surface.Included cleanup
This change also removes the obsolete integer-type detection/configuration pieces that only existed to support the generated header, including:
inttypes.htemplate filesHAVE_*/COIN_*integer typedef plumbing in config templates