Kaydet (Commit) ccb1b125 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Work around GCC 7 -Werror=implicit-fallthrough=

This is in !LIBO_INTERNAL_ONLY code, so cannot use SAL_FALLTHROUGH.  And even on
current <https://github.com/boostorg/config> master, BOOST_FALLTHROUGH does not
yet support [[fallthrough]] for GCC 7.

Change-Id: I5306c3949b13c517fe8ef643cf98c2021147617e
üst f6698138
......@@ -490,7 +490,11 @@ void SAL_CALL OPreparedStatement::setObjectWithInfo(sal_Int32 _parameterIndex, c
setDouble( _parameterIndex, nValue );
break;
}
#if defined __GNUC__ && __GNUC__ >= 7
[[fallthrough]];
#else
BOOST_FALLTHROUGH;
#endif
}
case DataType::CHAR:
......@@ -517,7 +521,11 @@ void SAL_CALL OPreparedStatement::setObjectWithInfo(sal_Int32 _parameterIndex, c
setFloat(_parameterIndex,nValue);
break;
}
#if defined __GNUC__ && __GNUC__ >= 7
[[fallthrough]];
#else
BOOST_FALLTHROUGH;
#endif
}
case DataType::DOUBLE:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment