Skip to content

explicit qualification of functions from Dune::Hybrid namespace

Summary

Hybrid functionality is defined in namespace Dune::Hybrid. The using namespace statement is replaced by an explicit namespace qualification for the function forEach and elementAt.

Motivation

Intel icc compiler has problems to find names inside a lambda that is created in a function having a using namespace statement before. Instead of importing the namespace also inside the lambda, the function calls are simply appended with the corresponding namespace and thus, explicitly qualified.

Merge request reports