From b333548757ac5ad13dc07cf18c757423d91f0fc2 Mon Sep 17 00:00:00 2001 From: timofey Date: Fri, 30 Jun 2023 20:20:45 +0000 Subject: [PATCH] hide `SingularResolution` --- src/rstd/singular.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rstd/singular.rs b/src/rstd/singular.rs index 9bdadd7..495c136 100644 --- a/src/rstd/singular.rs +++ b/src/rstd/singular.rs @@ -1,7 +1,7 @@ use crate::rcore::*; use crate::rstd::*; -pub trait SingularResolution<'a, Ctx: Context<'a>>: 'a { +trait SingularResolution<'a, Ctx: Context<'a>>: 'a { fn singular(self: Rc) -> HashResolution<'a, Ctx>; fn s_hash(&self) -> Hash;