summaryrefslogtreecommitdiff
path: root/gcc/type-stringifier.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/type-stringifier.hpp')
-rw-r--r--gcc/type-stringifier.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/type-stringifier.hpp b/gcc/type-stringifier.hpp
index 25e43d34ab1..b2e1261fc62 100644
--- a/gcc/type-stringifier.hpp
+++ b/gcc/type-stringifier.hpp
@@ -8,8 +8,6 @@ class TypeStringifier : public TypeWalker
private:
std::string _stringification;
- static std::string get_type_identifier(const_tree t);
- static std::string get_field_identifier(const_tree t);
void _stringify_simple(const_tree t);
void _stringify_aggregate_pre(const_tree t);
@@ -42,6 +40,8 @@ private:
virtual void _walk_FUNCTION_TYPE_pre(const_tree t);
virtual void _walk_FUNCTION_TYPE_post(const_tree t);
public:
+ static std::string get_type_identifier(const_tree t);
+ static std::string get_field_identifier(const_tree t);
std::string stringify(const_tree t);
TypeStringifier() {};
};