Skip to content

Commit

Permalink
support rust 1.40: fix macro import conflict, see rust-lang/rust#66518
Browse files Browse the repository at this point in the history
  • Loading branch information
luteberget committed Jan 17, 2020
1 parent 2c2d063 commit c272118
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/document/dgraph/allpaths.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use matches::*;
use matches::matches;
use rolling::input::staticinfrastructure::*;
use std::collections::HashSet;
use ordered_float::OrderedFloat;
Expand Down
2 changes: 1 addition & 1 deletion src/gui/diagram/draw.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use const_cstr::*;
use matches::*;
use matches::matches;
use backend_glfw::imgui::*;

use crate::config::*;
Expand Down
2 changes: 1 addition & 1 deletion src/gui/infrastructure/draw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use crate::config::*;

use backend_glfw::imgui::*;
use nalgebra_glm as glm;
use matches::*;
use matches::matches;
use std::collections::HashMap;

use rolling::input::staticinfrastructure as rolling_inf;
Expand Down
2 changes: 1 addition & 1 deletion src/gui/infrastructure/menus.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use const_cstr::*;
use matches::*;
use matches::matches;
use backend_glfw::imgui::*;
use rolling::input::staticinfrastructure as rolling_inf;
use std::ffi::CString;
Expand Down
2 changes: 1 addition & 1 deletion src/gui/infrastructure/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pub mod draw;
pub mod menus;

use const_cstr::*;
use matches::*;
use matches::matches;
use backend_glfw::imgui::*;
use nalgebra_glm as glm;

Expand Down
2 changes: 1 addition & 1 deletion src/gui/windows/synthesis.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use matches::*;
use matches::matches;
use nalgebra_glm as glm;
use ordered_float::OrderedFloat;
use const_cstr::*;
Expand Down
2 changes: 1 addition & 1 deletion src/import.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::collections::{HashMap, HashSet};
use log::*;
use matches::*;
use matches::matches;
use const_cstr::const_cstr;
use crate::document::model::*;
use crate::document::model;
Expand Down
2 changes: 1 addition & 1 deletion src/synthesis/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use numerical_optimization::powell::*;
use std::collections::{HashMap,HashSet, BTreeSet};
use boolinator::Boolinator;
use matches::*;
use matches::matches;
use nalgebra_glm as glm;
use log::*;

Expand Down
2 changes: 1 addition & 1 deletion src/synthesis/reduce.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use matches::*;
use matches::matches;
use std::collections::HashMap;
use std::collections::BTreeSet;
use rolling::input::staticinfrastructure as rolling_inf;
Expand Down

0 comments on commit c272118

Please sign in to comment.