public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-4378] ctfc: remove redundant comma in enumerator list
@ 2021-10-13 17:05 Indu Bhagat
  0 siblings, 0 replies; only message in thread
From: Indu Bhagat @ 2021-10-13 17:05 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:90582eb6c565afb9cef89c1781af6d9a96b086e9

commit r12-4378-g90582eb6c565afb9cef89c1781af6d9a96b086e9
Author: Indu Bhagat <indu.bhagat@oracle.com>
Date:   Wed Oct 13 10:01:38 2021 -0700

    ctfc: remove redundant comma in enumerator list
    
    This also helps get rid of warning
    
    ctfc.h:215:18: warning: comma at end of enumerator list [-Wpedantic]
       CTF_DTU_D_SLICE,
    
    gcc/ChangeLog:
    
            * ctfc.h (enum ctf_dtu_d_union_enum): Remove redundant comma.

Diff:
---
 gcc/ctfc.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/ctfc.h b/gcc/ctfc.h
index a0b7e4105a8..701c7eab819 100644
--- a/gcc/ctfc.h
+++ b/gcc/ctfc.h
@@ -212,7 +212,7 @@ enum ctf_dtu_d_union_enum {
   CTF_DTU_D_ARRAY,
   CTF_DTU_D_ENCODING,
   CTF_DTU_D_ARGUMENTS,
-  CTF_DTU_D_SLICE,
+  CTF_DTU_D_SLICE
 };
 
 enum ctf_dtu_d_union_enum


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-10-13 17:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-13 17:05 [gcc r12-4378] ctfc: remove redundant comma in enumerator list Indu Bhagat

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).