aboutsummaryrefslogtreecommitdiff
path: root/syntax/pod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'syntax/pod.rs')
-rw-r--r--syntax/pod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax/pod.rs b/syntax/pod.rs
index 0bf152ee..506e53cb 100644
--- a/syntax/pod.rs
+++ b/syntax/pod.rs
@@ -2,7 +2,7 @@ use crate::syntax::atom::Atom::{self, *};
use crate::syntax::{derive, Trait, Type, Types};
impl<'a> Types<'a> {
- pub fn is_guaranteed_pod(&self, ty: &Type) -> bool {
+ pub(crate) fn is_guaranteed_pod(&self, ty: &Type) -> bool {
match ty {
Type::Ident(ident) => {
let ident = &ident.rust;