diff options
| author | Aaron Hill <aa1ronham@gmail.com> | 2021-06-04 12:54:28 -0500 |
|---|---|---|
| committer | Aaron Hill <aa1ronham@gmail.com> | 2021-06-04 12:54:28 -0500 |
| commit | 6fd6624045d88bec706514a45257f9d0a4586923 (patch) | |
| tree | 1b78e17764b72d475a23e42fab565c2d77e55166 | |
| parent | 585fe22cebd48d57c6720f18154fd72c14b04737 (diff) | |
| download | rust-6fd6624045d88bec706514a45257f9d0a4586923.tar.gz rust-6fd6624045d88bec706514a45257f9d0a4586923.zip | |
Fix rebase fallout
| -rw-r--r-- | compiler/rustc_middle/src/dep_graph/dep_node.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/dep_graph/dep_node.rs b/compiler/rustc_middle/src/dep_graph/dep_node.rs index aa54d1ae7b9..8476929eaec 100644 --- a/compiler/rustc_middle/src/dep_graph/dep_node.rs +++ b/compiler/rustc_middle/src/dep_graph/dep_node.rs @@ -285,7 +285,7 @@ pub type DepNode = rustc_query_system::dep_graph::DepNode<DepKind>; // required that their size stay the same, but we don't want to change // it inadvertently. This assert just ensures we're aware of any change. #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] -static_assert_size!(DepNode, 17); +static_assert_size!(DepNode, 18); #[cfg(not(any(target_arch = "x86", target_arch = "x86_64")))] static_assert_size!(DepNode, 24); |
