diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-05 20:44:49 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-05 20:44:49 +0000 |
commit | 32a99bf22d315dec553115f6dfc4a6c981b4be32 (patch) | |
tree | a0836796187a386cedefdff48ae364e93d6152b3 /gcc/diagnostic.h | |
parent | 8f2d1a75abd205f3ced40850398fb10ff06728d5 (diff) | |
download | gcc-32a99bf22d315dec553115f6dfc4a6c981b4be32.tar.gz |
* diagnostic.h (DEFINE_DIAGNOSTIC_KIND): Change parameter M to
msgid.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77341 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/diagnostic.h')
-rw-r--r-- | gcc/diagnostic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/diagnostic.h b/gcc/diagnostic.h index cf331e0df5f..87c3404b6b1 100644 --- a/gcc/diagnostic.h +++ b/gcc/diagnostic.h @@ -27,7 +27,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA /* Constants used to discriminate diagnostics. */ typedef enum { -#define DEFINE_DIAGNOSTIC_KIND(K, M) K, +#define DEFINE_DIAGNOSTIC_KIND(K, msgid) K, #include "diagnostic.def" #undef DEFINE_DIAGNOSTIC_KIND DK_LAST_DIAGNOSTIC_KIND |