mirror of
https://github.com/pocoproject/poco.git
synced 2025-02-20 22:31:23 +01:00
GCC diagnostic guard fix
This commit is contained in:
parent
4ae9aa9674
commit
d992509f6e
@ -148,9 +148,9 @@ protected:
|
||||
//
|
||||
|
||||
|
||||
#if defined(GNUC) && (GNUC > 4) && (GNUC_MINOR > 6)
|
||||
#if defined(POCO_COMPILER_GCC) && (((__GNUC__ * 100) + __GNUC_MINOR__) >= 406)
|
||||
GCC_DIAG_OFF(unused-local-typedefs) // supress numerous gcc warnings
|
||||
#endif // (GNUC) && (GNUC > 4) && (GNUC_MINOR > 6)
|
||||
#endif // POCO_COMPILER_GCC && (((__GNUC__ * 100) + __GNUC_MINOR__) >= 406)
|
||||
|
||||
|
||||
template <bool x>
|
||||
|
Loading…
x
Reference in New Issue
Block a user