]> git.proxmox.com Git - rustc.git/blobdiff - compiler/rustc_data_structures/src/work_queue.rs
New upstream version 1.53.0+dfsg1
[rustc.git] / compiler / rustc_data_structures / src / work_queue.rs
index cc562bc1e4d914be4eb6a707a6eae9233ea5b4a0..10317f1afff673e3db6f0355fcc26591205c2dde 100644 (file)
@@ -41,10 +41,4 @@ impl<T: Idx> WorkQueue<T> {
             None
         }
     }
-
-    /// Returns `true` if nothing is enqueued.
-    #[inline]
-    pub fn is_empty(&self) -> bool {
-        self.deque.is_empty()
-    }
 }