Skip to content

Commit

Permalink
MDEV-9479: Enable OQGRAPH Engine to compile with Boost-1.60+
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
xnox authored and cvicentiu committed Jun 22, 2016
1 parent b449612 commit 26bf066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/oqgraph/oqgraph_shim.h
Original file line number Diff line number Diff line change
Expand Up @@ -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>
{
Expand Down

0 comments on commit 26bf066

Please sign in to comment.