Skip to content

Commit

Permalink
Add Debug to things
Browse files Browse the repository at this point in the history
  • Loading branch information
shepmaster committed Jun 15, 2017
1 parent e8ac752 commit c01c6bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tests/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ fn publish_build_info() {
)
);

#[derive(RustcDecodable)]
#[derive(Debug, RustcDecodable)]
struct R {
build_info: EncodableBuildInfo,
}
Expand Down
2 changes: 1 addition & 1 deletion src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ pub const BUILD_INFO_FIELDS: (build_info::version_id,
build_info::passed,
);

#[derive(RustcEncodable, RustcDecodable, Default)]
#[derive(Debug, RustcEncodable, RustcDecodable, Default)]
pub struct EncodableBuildInfo {
id: i32,
pub ordering: HashMap<String, Vec<String>>,
Expand Down

0 comments on commit c01c6bf

Please sign in to comment.