diff options
author | Dimitri John Ledkov <xnox@ubuntu.com> | 2016-06-21 10:25:08 +1000 |
---|---|---|
committer | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2016-06-22 16:41:38 +0300 |
commit | 26bf066d566371abc04e15c9d9415cfcc75833cb (patch) | |
tree | 2a44e9ec8f2116ab5b09b9968247dc1222500393 /storage | |
parent | b449612907bd09bebf8d1280d80839cd16784fd3 (diff) | |
download | mariadb-git-26bf066d566371abc04e15c9d9415cfcc75833cb.tar.gz |
MDEV-9479: Enable OQGRAPH Engine to compile with Boost-1.60+
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 <vicentiu@mariadb.org>
Diffstat (limited to 'storage')
-rw-r--r-- | storage/oqgraph/oqgraph_shim.h | 2 |
1 files changed, 1 insertions, 1 deletions
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<oqgraph3::graph> { |