Fix build break due to generalized type parameter bounds

This commit is contained in:
Brian Koropoff 2014-08-28 21:38:53 -07:00
parent 8c128cb550
commit a9297d3cac

View file

@ -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>,
}