gccrs: visibility: Rename get_public_vis_type -> get_vis_type
authorArthur Cohen <arthur.cohen@embecosm.com>
Tue, 27 Sep 2022 13:49:59 +0000 (15:49 +0200)
committerArthur Cohen <arthur.cohen@embecosm.com>
Tue, 21 Feb 2023 11:36:31 +0000 (12:36 +0100)
gcc/rust/ChangeLog:

* ast/rust-item.h: Rename get_public_vis_type.
* hir/rust-ast-lower.cc (translate_visibility): Use new name.

gcc/rust/ast/rust-item.h
gcc/rust/hir/rust-ast-lower.cc

index 93497a3..d66dd61 100644 (file)
@@ -634,7 +634,7 @@ public:
     : vis_type (vis_type), in_path (std::move (in_path))
   {}
 
-  VisType get_public_vis_type () const { return vis_type; }
+  VisType get_vis_type () const { return vis_type; }
 
   // Returns whether visibility is in an error state.
   bool is_error () const
index d88c343..4f1bfd1 100644 (file)
@@ -36,7 +36,7 @@ translate_visibility (const AST::Visibility &vis)
   if (vis.is_error ())
     return Visibility::create_error ();
 
-  switch (vis.get_public_vis_type ())
+  switch (vis.get_vis_type ())
     {
     case AST::Visibility::PUB:
       return Visibility (Visibility::VisType::PUBLIC);