Skip to content

Commit

Permalink
Merge #543
Browse files Browse the repository at this point in the history
543: Make Specs compatible with Rust 1.28 again r=torkleyy a=torkleyy





Co-authored-by: Thomas Schaller <[email protected]>
  • Loading branch information
bors[bot] and torkleyy committed Jan 5, 2019
2 parents 16ac0fe + 67cab17 commit d533973
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "specs"
version = "0.14.2"
version = "0.14.3"
description = """
Specs is an Entity-Component System library written in Rust.
"""
Expand Down
5 changes: 3 additions & 2 deletions src/storage/entry.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
use super::*;
use crate::join::Join;
use hibitset::BitSetAll;

use join::Join;
use super::*;

impl<'e, T, D> Storage<'e, T, D>
where
T: Component,
Expand Down

0 comments on commit d533973

Please sign in to comment.