Skip to content

Commit c272118

Browse files
committed
support rust 1.40: fix macro import conflict, see rust-lang/rust#66518
1 parent 2c2d063 commit c272118

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

src/document/dgraph/allpaths.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use matches::*;
1+
use matches::matches;
22
use rolling::input::staticinfrastructure::*;
33
use std::collections::HashSet;
44
use ordered_float::OrderedFloat;

src/gui/diagram/draw.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use const_cstr::*;
2-
use matches::*;
2+
use matches::matches;
33
use backend_glfw::imgui::*;
44

55
use crate::config::*;

src/gui/infrastructure/draw.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use crate::config::*;
1212

1313
use backend_glfw::imgui::*;
1414
use nalgebra_glm as glm;
15-
use matches::*;
15+
use matches::matches;
1616
use std::collections::HashMap;
1717

1818
use rolling::input::staticinfrastructure as rolling_inf;

src/gui/infrastructure/menus.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use const_cstr::*;
2-
use matches::*;
2+
use matches::matches;
33
use backend_glfw::imgui::*;
44
use rolling::input::staticinfrastructure as rolling_inf;
55
use std::ffi::CString;

src/gui/infrastructure/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pub mod draw;
22
pub mod menus;
33

44
use const_cstr::*;
5-
use matches::*;
5+
use matches::matches;
66
use backend_glfw::imgui::*;
77
use nalgebra_glm as glm;
88

src/gui/windows/synthesis.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use matches::*;
1+
use matches::matches;
22
use nalgebra_glm as glm;
33
use ordered_float::OrderedFloat;
44
use const_cstr::*;

src/import.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use std::collections::{HashMap, HashSet};
22
use log::*;
3-
use matches::*;
3+
use matches::matches;
44
use const_cstr::const_cstr;
55
use crate::document::model::*;
66
use crate::document::model;

src/synthesis/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use numerical_optimization::powell::*;
22
use std::collections::{HashMap,HashSet, BTreeSet};
33
use boolinator::Boolinator;
4-
use matches::*;
4+
use matches::matches;
55
use nalgebra_glm as glm;
66
use log::*;
77

src/synthesis/reduce.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use matches::*;
1+
use matches::matches;
22
use std::collections::HashMap;
33
use std::collections::BTreeSet;
44
use rolling::input::staticinfrastructure as rolling_inf;

0 commit comments

Comments
 (0)