diff options
Diffstat (limited to 'gcc/cp/rtti.c')
-rw-r--r-- | gcc/cp/rtti.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/cp/rtti.c b/gcc/cp/rtti.c index da1484c..f8c6031 100644 --- a/gcc/cp/rtti.c +++ b/gcc/cp/rtti.c @@ -71,12 +71,10 @@ static int doing_runtime = 0; void init_rtti_processing () { - if (flag_honor_std) - push_namespace (std_identifier); + push_namespace (std_identifier); type_info_type_node = xref_tag (class_type_node, get_identifier ("type_info"), 1); - if (flag_honor_std) - pop_namespace (); + pop_namespace (); tinfo_decl_type = build_qualified_type (type_info_type_node, TYPE_QUAL_CONST); } |