diff options
Diffstat (limited to 'gcc/cp/error.c')
-rw-r--r-- | gcc/cp/error.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/cp/error.c b/gcc/cp/error.c index f873558..c4f4d46 100644 --- a/gcc/cp/error.c +++ b/gcc/cp/error.c @@ -886,6 +886,10 @@ dump_decl (tree t, int flags) dump_decl (DECL_NAME (t), flags); break; + case STATIC_ASSERT: + pp_cxx_declaration (cxx_pp, t); + break; + case BASELINK: dump_decl (BASELINK_FUNCTIONS (t), flags); break; |