Clean up compiler errors related to type name changes
This commit is contained in:
parent
ddfac28b8c
commit
b0aa38e387
3 changed files with 16 additions and 16 deletions
|
|
@ -2,15 +2,15 @@
|
|||
* Eryn Wells <eryn@erynwells.me>
|
||||
*/
|
||||
|
||||
pub use self::bool::Bool;
|
||||
pub use self::char::Char;
|
||||
pub use self::number::Number;
|
||||
use self::value::Value;
|
||||
|
||||
pub mod bool;
|
||||
pub mod char;
|
||||
pub mod number;
|
||||
mod value;
|
||||
pub mod value;
|
||||
|
||||
pub use self::bool::Bool;
|
||||
pub use self::char::Char;
|
||||
pub use self::number::Number;
|
||||
pub use self::value::Value;
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue