about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJakub Beránek <berykubik@gmail.com>2024-06-22 17:54:44 +0200
committerJakub Beránek <jakub.beranek@vsb.cz>2024-07-03 21:13:55 +0200
commite8c8860142a999d086efe579e8e17df8437a9730 (patch)
tree6bc119b3804d91401ee22021440a3082e2738f3d
parent3ef77cc42cb1ea1f07c1bd8c2ac514d15291106b (diff)
downloadrust-e8c8860142a999d086efe579e8e17df8437a9730.tar.gz
rust-e8c8860142a999d086efe579e8e17df8437a9730.zip
Allow unused `Tool` variants
-rw-r--r--src/bootstrap/src/core/build_steps/tool.rs1
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,