From a45e3de9b76188d7815a2ca6b762ed60b4b87d1e Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Sat, 4 Feb 2017 13:27:07 +0900 Subject: [PATCH] Qualify calling of as_const. It is ambiguous with upcoming standardized `std::as_const`. --- test/test_properties.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_properties.hpp b/test/test_properties.hpp index 2d71b9b2..751a838d 100644 --- a/test/test_properties.hpp +++ b/test/test_properties.hpp @@ -21,7 +21,7 @@ void test_graph_bundle(Graph& g, boost::mpl::true_) { GraphBundle& b2 = get_property(g); ignore(b1); ignore(b2); - GraphBundle const& cb1 = as_const(g)[graph_bundle]; + GraphBundle const& cb1 = ::as_const(g)[graph_bundle]; GraphBundle const& cb2 = get_property(g); ignore(cb1); ignore(cb2); }