Skip to content

Commit a576f72

Browse files
committed
Fix #ifdef GCC
1 parent 096cc82 commit a576f72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

driver/mysql_prepared_statement.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
#include <iostream>
3737
#include <sstream>
3838
#include "mysql_util.h"
39-
#ifdef GCC
40-
#if defined __GNUC__ || __GNUC__ >= 8
39+
#if defined __GNUC__ && __GNUC__ >= 8
40+
DIAGNOSTIC_PUSH
4141
DISABLE_WARNING(-Wparentheses)
4242
#include <boost/variant.hpp>
4343
#include <boost/scoped_array.hpp>

0 commit comments

Comments
 (0)