diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-01-20 19:20:23 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-01-21 07:57:44 +0100 |
commit | dda3fc05a2900539836f9748d418dc56247a2ddc (patch) | |
tree | aad2fa15676354d793138990a6d0bdfed101be53 /external/boost | |
parent | e941434d98fa1500ad85be3ff59117d62ac8bc24 (diff) |
Fix for Jenkins Gerrit Mac builds
...which choke on
#pragma GCC diagnostic ignored "-Wpragmas"
Change-Id: I40100b43078320b79cb9e3d4e3fb369db0bed9fe
Diffstat (limited to 'external/boost')
-rw-r--r-- | external/boost/gcc6-warnings.patch.0 | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/external/boost/gcc6-warnings.patch.0 b/external/boost/gcc6-warnings.patch.0 index e5f7b2dd6355..66ea135c0a16 100644 --- a/external/boost/gcc6-warnings.patch.0 +++ b/external/boost/gcc6-warnings.patch.0 @@ -1,14 +1,20 @@ --- boost/function/function_base.hpp +++ boost/function/function_base.hpp -@@ -305,7 +305,15 @@ +@@ -305,7 +305,21 @@ if (op == clone_functor_tag || op == move_functor_tag) { const functor_type* in_functor = static_cast<const functor_type*>(static_cast<void*>(&in_buffer.data)); +#if defined __GNUC__ +#pragma GCC diagnostic push ++#if defined __clang__ ++#if __has_warning("-Wplacement-new") ++#pragma GCC diagnostic ignored "-Wplacement-new" ++#endif ++#else +#pragma GCC diagnostic ignored "-Wpragmas" +#pragma GCC diagnostic ignored "-Wplacement-new" +#endif ++#endif new (reinterpret_cast<void*>(&out_buffer.data)) functor_type(*in_functor); +#if defined __GNUC__ +#pragma GCC diagnostic pop @@ -18,15 +24,21 @@ functor_type* f = static_cast<functor_type*>(static_cast<void*>(&in_buffer.data)); --- boost/function/function_template.hpp +++ boost/function/function_template.hpp -@@ -569,7 +569,15 @@ +@@ -569,7 +569,21 @@ void assign_functor(FunctionObj f, function_buffer& functor, mpl::true_) const { +#if defined __GNUC__ +#pragma GCC diagnostic push ++#if defined __clang__ ++#if __has_warning("-Wplacement-new") ++#pragma GCC diagnostic ignored "-Wplacement-new" ++#endif ++#else +#pragma GCC diagnostic ignored "-Wpragmas" +#pragma GCC diagnostic ignored "-Wplacement-new" +#endif ++#endif new (reinterpret_cast<void*>(&functor.data)) FunctionObj(f); +#if defined __GNUC__ +#pragma GCC diagnostic pop |