aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/cxx-pretty-print.h
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2003-10-07 07:07:07 +0000
committerMark Mitchell <mark@codesourcery.com>2003-10-07 07:07:07 +0000
commit5ce12f1181f9a005c8eb5227f1b70d1f1d037734 (patch)
treec12092a2354ac3c5aa978d1c9dc718ab56108813 /gcc/cp/cxx-pretty-print.h
parent47d6d7d1623a5dfdcf81792d143151a350c54ee2 (diff)
PR c++/10147
* call.c (initialize_reference): Tweak error message. PR c++/12337 * init.c (build_new_1): Make sure that the expression returned is not an lvalue. PR c++/12344, c++/12236, c++/8656 * decl.c (start_function): Do not ignore attributes embedded in a function declarator. PR c++/12337 * g++.dg/init/new9.C: New test. PR c++/12334, c++/12236, c++/8656 * g++.dg/ext/attrib8.C: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@72183 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/cxx-pretty-print.h')
-rw-r--r--gcc/cp/cxx-pretty-print.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/cp/cxx-pretty-print.h b/gcc/cp/cxx-pretty-print.h
index d75c2827f95..b47eff0ef19 100644
--- a/gcc/cp/cxx-pretty-print.h
+++ b/gcc/cp/cxx-pretty-print.h
@@ -30,9 +30,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
typedef enum
{
/* Ask for an qualified-id. */
- pp_cxx_flag_qualified_id = 1 << pp_c_flag_last_bit,
- pp_cxx_flag_global_scope = 1 << (pp_c_flag_last_bit + 1),
- pp_cxx_flag_default_argument = 1 << (pp_c_flag_last_bit + 2)
+ pp_cxx_flag_default_argument = 1 << pp_c_flag_last_bit
} cxx_pretty_printer_flags;