Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upsrc: organize imports in inspector_profiler.cc #29073
+4
−3
Conversation
nodejs-github-bot
added
C++
inspector
labels
Aug 9, 2019
addaleax
approved these changes
Aug 9, 2019
This comment has been minimized.
This comment has been minimized.
pi1024e
force-pushed the
pi1024e:master
branch
2 times, most recently
from
1eef586
to
0f75d50
Aug 9, 2019
eugeneo
approved these changes
Aug 9, 2019
This comment has been minimized.
This comment has been minimized.
Trott
approved these changes
Aug 9, 2019
This comment has been minimized.
This comment has been minimized.
pi1024e
force-pushed the
pi1024e:master
branch
2 times, most recently
from
a395d7e
to
b688058
Aug 10, 2019
pi1024e
changed the title
src: organize imports in inspector_profiler.cc to match import order of other files
src: organize imports in inspector_profiler.cc
Aug 10, 2019
pi1024e
force-pushed the
pi1024e:master
branch
from
9f78fca
to
f0fdb47
Aug 10, 2019
ZYSzys
approved these changes
Aug 10, 2019
pi1024e
force-pushed the
pi1024e:master
branch
from
f0fdb47
to
85c0575
Aug 11, 2019
pi1024e
force-pushed the
pi1024e:master
branch
from
12d4dbd
to
fb173ae
Aug 11, 2019
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
Landed in 15b2d13. Thanks for the contribution! |
Trott
closed this
Aug 12, 2019
Trott
added a commit
to Trott/io.js
that referenced
this pull request
Aug 12, 2019
targos
added a commit
that referenced
this pull request
Aug 19, 2019
targos
added a commit
that referenced
this pull request
Aug 19, 2019
This was referenced Aug 20, 2019
JeniaBR
added a commit
to JeniaBR/node
that referenced
this pull request
Sep 11, 2019
JeniaBR
added a commit
to JeniaBR/node
that referenced
this pull request
Sep 11, 2019
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.
pi1024e commentedAug 9, 2019
Checklist
make -j4 test(UNIX), orvcbuild test(Windows) passesIn the other .cc files in the project, includes are in alphabetical order, with local files first, and libraries after. However, inspector_profiler.cc has a library declared in the middle of the import order, and v8 is the second to last being imported, instead of the last. So I reordered the imports and testing showed no side effects; everything passed.
It is a small change and it does not change any behavior. However, if you are weary of accepting this PR I understand.