Fix build break due to generalized type parameter bounds
This commit is contained in:
parent
8c128cb550
commit
a9297d3cac
|
@ -2,7 +2,7 @@ use std::fmt;
|
|||
|
||||
use {Value, String, Integer, Float, Boolean, Datetime, Array, Table};
|
||||
|
||||
struct Printer<'a, 'b> {
|
||||
struct Printer<'a, 'b:'a> {
|
||||
output: &'a mut fmt::Formatter<'b>,
|
||||
stack: Vec<&'a str>,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue