Remove #[inline] from a generic impl

This commit is contained in:
Steven Fackler 2014-03-10 10:10:27 -07:00
parent 3cf70fa533
commit 527d7376be

View File

@ -525,7 +525,6 @@ impl<'stmt> Container for PostgresRow<'stmt> {
}
impl<'stmt, I: RowIndex, T: FromSql> Index<I, T> for PostgresRow<'stmt> {
#[inline]
fn index(&self, idx: &I) -> T {
let idx = idx.idx(self.stmt);
FromSql::from_sql(&self.stmt.result_desc[idx].ty, &self.data[idx])