diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2024-06-22 17:54:44 +0200 |
|---|---|---|
| committer | Jakub Beránek <jakub.beranek@vsb.cz> | 2024-07-03 21:13:55 +0200 |
| commit | e8c8860142a999d086efe579e8e17df8437a9730 (patch) | |
| tree | 6bc119b3804d91401ee22021440a3082e2738f3d | |
| parent | 3ef77cc42cb1ea1f07c1bd8c2ac514d15291106b (diff) | |
| download | rust-e8c8860142a999d086efe579e8e17df8437a9730.tar.gz rust-e8c8860142a999d086efe579e8e17df8437a9730.zip | |
Allow unused `Tool` variants
| -rw-r--r-- | src/bootstrap/src/core/build_steps/tool.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/src/core/build_steps/tool.rs b/src/bootstrap/src/core/build_steps/tool.rs index 40184e016a6..5fb282db90a 100644 --- a/src/bootstrap/src/core/build_steps/tool.rs +++ b/src/bootstrap/src/core/build_steps/tool.rs @@ -244,6 +244,7 @@ macro_rules! bootstrap_tool { ; )+) => { #[derive(PartialEq, Eq, Clone)] + #[allow(dead_code)] pub enum Tool { $( $name, |
