diff --git a/src/Mod/Assembly/App/opendcm/core/imp/clustergraph_imp.hpp b/src/Mod/Assembly/App/opendcm/core/imp/clustergraph_imp.hpp index 678e14e83c..6cf0e0b369 100644 --- a/src/Mod/Assembly/App/opendcm/core/imp/clustergraph_imp.hpp +++ b/src/Mod/Assembly/App/opendcm/core/imp/clustergraph_imp.hpp @@ -876,12 +876,12 @@ void ClusterGraph::initIndexMaps( std::pair vit = boost::vertices(*this); for(int c = 0; vit.first != vit.second; vit.first++, c++) - setProperty(*vit.first, c); + ClusterGraph::template setProperty(*vit.first, c); std::pair eit = boost::edges(*this); for(int c = 0; eit.first != eit.second; eit.first++, c++) - setProperty(*eit.first, c); + ClusterGraph::template setProperty(*eit.first, c); }; template< typename edge_prop, typename vertex_prop, typename cluster_prop, typename objects>