Minor clippy fix.

This commit is contained in:
Windel Bouwman
2019-03-02 11:22:40 +01:00
parent 8f52e15d32
commit 7bb6f8fdaa
4 changed files with 15 additions and 8 deletions

View File

@@ -190,7 +190,7 @@ pub enum Constant {
Boolean { value: bool },
String { value: String },
Bytes { value: Vec<u8> },
Code { code: CodeObject },
Code { code: Box<CodeObject> },
Tuple { elements: Vec<Constant> },
None,
}