Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
5b72e72
compiletest: apply considerable clippy suggestions
onur-ozkan Jun 6, 2024
643e410
build_helper: apply considerable clippy suggestions
onur-ozkan Jun 6, 2024
2715ba1
build-manifest: apply considerable clippy suggestions
onur-ozkan Jun 6, 2024
ea47bce
jsondoclint: apply considerable clippy suggestions
onur-ozkan Jun 6, 2024
be99e19
remote-test-server: apply considerable clippy suggestions
onur-ozkan Jun 6, 2024
27e05f6
remote-test-client: apply considerable clippy suggestions
onur-ozkan Jun 6, 2024
44b1a6b
lint-docs: apply considerable clippy suggestions
onur-ozkan Jun 6, 2024
c32b55e
opt-dist: apply considerable clippy suggestions
onur-ozkan Jun 6, 2024
ed1e5c9
tidy: apply considerable clippy suggestions
onur-ozkan Jun 6, 2024
eaa45c8
fix bootstrap CI failure
onur-ozkan Jun 6, 2024
c81ffab
std::unix::fs::link using direct linkat call for Solaris and macOs.
devnexen Jun 12, 2024
a84f754
Use `-Zno-profiler-runtime` instead of `//@ needs-profiler-support`
Zalathar Mar 16, 2024
0c67f32
Don't build a known-broken profiler runtime in `x86_64-mingw`
Zalathar Mar 17, 2024
d2ecfbb
Remove `//@ ignore-windows-gnu` from tests that need the profiler
Zalathar Mar 17, 2024
beb45a4
Remove broken/untested `--enable-profiler` from mingw dist builds
Zalathar Mar 17, 2024
2733b8a
Avoid follow-up errors on erroneous patterns
oli-obk Jun 11, 2024
a621701
Replace some `Option<Diag>` with `Result<(), Diag>`
oli-obk Jun 12, 2024
ece3e3e
Replace some `Option<Diag>` with `Result<(), Diag>`
oli-obk Jun 12, 2024
e8d6170
Replace some `Option<Diag>` with `Result<(), Diag>`
oli-obk Jun 12, 2024
7566307
Replace a `bool` with a `Result<(), ErrorGuaranteed>`
oli-obk Jun 12, 2024
b28221e
Use diagnostic method for diagnostics
oli-obk Apr 15, 2024
c75f728
Add some tests
oli-obk Apr 15, 2024
9cf60ee
Method resolution constrains hidden types instead of rejecting method…
oli-obk Apr 15, 2024
37a826f
Rollup merge of #122613 - Zalathar:profiler, r=nnethercote
fmease Jun 13, 2024
f20fc59
Rollup merge of #123962 - oli-obk:define_opaque_types5, r=lcnr
fmease Jun 13, 2024
c2399cd
Rollup merge of #126088 - onur-ozkan:brooming, r=albertlarsan68
fmease Jun 13, 2024
2a7a689
Rollup merge of #126320 - oli-obk:pat_ice, r=lcnr
fmease Jun 13, 2024
5172833
Rollup merge of #126351 - devnexen:to_sol11_upd, r=ChrisDenton
fmease Jun 13, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
build-manifest: apply considerable clippy suggestions
Signed-off-by: onur-ozkan <[email protected]>
  • Loading branch information
onur-ozkan committed Jun 6, 2024
commit 2715ba1dfbc281f01eb44538c621e19867c9d684
2 changes: 1 addition & 1 deletion src/tools/build-manifest/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ impl Builder {
Some(p) => p,
None => return false,
};
pkg.target.get(&c.target).is_some()
pkg.target.contains_key(&c.target)
};
extensions.retain(&has_component);
components.retain(&has_component);
Expand Down