Skip to content

Commit 55f5451

Browse files
authored
Merge pull request #2132 from gjasny/init-order
chore: fix build warning
2 parents 99c1bc7 + 29e66e2 commit 55f5451

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ninja.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1400,7 +1400,7 @@ class DeferGuessParallelism {
14001400
BuildConfig* config;
14011401

14021402
DeferGuessParallelism(BuildConfig* config)
1403-
: config(config), needGuess(true) {}
1403+
: needGuess(true), config(config) {}
14041404

14051405
void Refresh() {
14061406
if (needGuess) {

0 commit comments

Comments
 (0)