From a9297d3cacd2c9aeabc5990df68b46cbdd5bbd29 Mon Sep 17 00:00:00 2001 From: Brian Koropoff Date: Thu, 28 Aug 2014 21:38:53 -0700 Subject: Fix build break due to generalized type parameter bounds --- src/show.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/show.rs b/src/show.rs index a99a088..b072277 100644 --- a/src/show.rs +++ b/src/show.rs @@ -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>, } -- cgit v1.2.3