From 26bf066d566371abc04e15c9d9415cfcc75833cb Mon Sep 17 00:00:00 2001 From: Dimitri John Ledkov Date: Tue, 21 Jun 2016 10:25:08 +1000 Subject: MDEV-9479: Enable OQGRAPH Engine to compile with Boost-1.60+ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This used to be a compile failure. The defined structure isn't required in the later versions of boost. Signed-off-by: Vicențiu Ciorbaru --- storage/oqgraph/oqgraph_shim.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'storage/oqgraph') diff --git a/storage/oqgraph/oqgraph_shim.h b/storage/oqgraph/oqgraph_shim.h index 6ea9d10631f..af240b88ebd 100644 --- a/storage/oqgraph/oqgraph_shim.h +++ b/storage/oqgraph/oqgraph_shim.h @@ -254,7 +254,7 @@ namespace boost typedef no_property type; }; -#if BOOST_VERSION >= 104601 +#if BOOST_VERSION < 106000 && BOOST_VERSION >= 104601 template <> struct graph_bundle_type { -- cgit v1.2.1