Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
src: remove util-inl.h include in node.h
`node.h` may only include public APIs, which `util-inl.h` is not. There does not seem to be any reason for including it, so remove it, because otherwise native addon compilation is broken due to us not shipping the `util-inl.h` header. Refs: nodejs#27631 Fixes: nodejs#27803
- Loading branch information
3853b0c
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.
I included it because some of our cctest code appeared to me to assume it was present, so I thought it was part of our public API, but I was clearly mistaken. This fix LGTM.