Skip to content

Commit

Permalink
[all] con -> con_ to avoid reserved filename on windows (fixes #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed Nov 22, 2017
1 parent 1e261dd commit 26329b7
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/element.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use super::formatter::Formatter;
use super::custom::Custom;
use std::fmt;
use super::tokens::Tokens;
use super::con::Con;
use super::con_::Con;
use super::cons::Cons;

use std::rc::Rc;
Expand Down
2 changes: 1 addition & 1 deletion src/java/constructor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use tokens::Tokens;
use java::Java;
use super::argument::Argument;
use con::Con::Owned;
use con_::Con::Owned;
use cons::Cons;
use super::modifier::Modifier;
use element::Element;
Expand Down
2 changes: 1 addition & 1 deletion src/java/field.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use tokens::Tokens;
use java::Java;
use cons::Cons;
use con::Con;
use con_::Con;
use super::modifier::Modifier;
use element::Element;
use into_tokens::IntoTokens;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#[macro_use]
mod macros;
mod con;
mod con_;
mod custom;
mod element;
mod formatter;
Expand Down
2 changes: 1 addition & 1 deletion src/tokens.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use std::collections::LinkedList;
use super::custom::Custom;
use std::fmt;
use std::result;
use super::con::Con::{Owned, Borrowed};
use con_::Con::{Owned, Borrowed};
use std::vec;
use std::iter::FromIterator;

Expand Down

0 comments on commit 26329b7

Please sign in to comment.