Skip to content

Commit

Permalink
Merge pull request #6 from azriel91/feature/derive-debug
Browse files Browse the repository at this point in the history
Derive Debug for FontInfo
  • Loading branch information
jackpot51 committed Feb 2, 2018
2 parents 56551f4 + c2597e4 commit ac82e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ extern crate byteorder;
use byteorder::ByteOrder;
use byteorder::BigEndian as BE;
use ::std::ops::Deref;
#[derive(Clone)]
#[derive(Clone, Debug)]
pub struct FontInfo<Data: Deref<Target=[u8]>> {
data: Data, // pointer to .ttf file
// fontstart: usize, // offset of start of font
Expand Down

0 comments on commit ac82e0b

Please sign in to comment.