hackfix PSEH for gcc > 4.2

this will hide uninitialized variable warnings in the following code

svn path=/trunk/; revision=32015
This commit is contained in:
Christoph von Wittich 2008-01-26 14:36:52 +00:00
parent d97a210338
commit 57d135db9d

View file

@ -23,6 +23,11 @@
#ifndef KJK_PSEH_FRAMEBASED_H_
#define KJK_PSEH_FRAMEBASED_H_
#if ((__GNUC__ > 4) && (__GNUC_MINOR__ > 1))
/* warning: this will hide uninitialized variable warnings in the following code */
# pragma GCC diagnostic ignored "-Wuninitialized"
#endif
#include <pseh/framebased/internal.h>
#include <pseh/excpt.h>