mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
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:
parent
d97a210338
commit
57d135db9d
1 changed files with 5 additions and 0 deletions
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in a new issue