gccrs: visibility: Rename get_public_vis_type -> get_vis_type

gcc/rust/ChangeLog:

	* ast/rust-item.h: Rename get_public_vis_type.
	* hir/rust-ast-lower.cc (translate_visibility): Use new name.
This commit is contained in:
Arthur Cohen
2022-09-27 15:49:59 +02:00
parent 7e7a958804
commit 7080854461
2 changed files with 2 additions and 2 deletions

View 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

View 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);