mdbx: explicit disable -Wattributes by #pragma for GCC < 9.

This commit is contained in:
Леонид Юрьев (Leonid Yuriev) 2022-01-27 16:31:13 +03:00
parent 0fdeb7cd50
commit d93a13294a

View File

@ -113,6 +113,10 @@
disable : 4505) /* unreferenced local function has been removed */
#endif /* _MSC_VER (warnings) */
#if defined(__GNUC__) && __GNUC__ < 9
#pragma GCC diagnostic ignored "-Wattributes"
#endif /* GCC < 9 */
#include "../mdbx.h"
#include "defs.h"