Skip to content

Commit

Permalink
fix:
Browse files Browse the repository at this point in the history
  • Loading branch information
BHznJNs committed Nov 23, 2023
1 parent edaf46a commit 2b315f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/public/value/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub mod unique;
pub mod oop;
mod core;

pub use core::{Value, ValueType, VoidSign};
pub use self::core::{Value, ValueType, VoidSign};

pub(super) type Addr = usize;
pub(super) trait GetAddr {
Expand Down Expand Up @@ -56,5 +56,5 @@ fn display_indent(level: usize) -> String {

#[inline]
pub fn into_rc_refcell<T>(value: T) -> Rc<RefCell<T>> {
return Rc::new(RefCell::new(value));
Rc::new(RefCell::new(value))
}

0 comments on commit 2b315f9

Please sign in to comment.