Remove the requirement that Variable implement Default.

This commit is contained in:
Dan Gohman
2017-11-06 11:10:14 -08:00
parent 4091688cc0
commit 1d8df2ed1e
3 changed files with 13 additions and 28 deletions

View File

@@ -56,11 +56,6 @@
//! self.0 as usize
//! }
//! }
//! impl Default for Variable {
//! fn default() -> Variable {
//! Variable(u32::MAX)
//! }
//! }
//!
//! fn main() {
//! let mut sig = Signature::new(CallConv::Native);