From ad6d4f0f058e6ed845f47d61090cdba73431b187 Mon Sep 17 00:00:00 2001
From: Oliver Sander <oliver.sander@tu-dresden.de>
Date: Tue, 8 Oct 2019 14:26:39 +0200
Subject: [PATCH] Qualify the MultiIndex class by '::'

All of a sudden it gets confused with a class of the same name
in dune-localfunctions.
---
 test/cosseratenergytest.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/cosseratenergytest.cc b/test/cosseratenergytest.cc
index 73aa6672..8f111488 100644
--- a/test/cosseratenergytest.cc
+++ b/test/cosseratenergytest.cc
@@ -229,7 +229,7 @@ void testFrameInvariance()
     // Set up elements of SE(3)
     std::vector<TargetSpace> coefficients(domainDim+1);
 
-    MultiIndex index(domainDim+1, testPoints.size());
+    ::MultiIndex index(domainDim+1, testPoints.size());
     int numIndices = index.cycle();
 
     for (int i=0; i<numIndices; i++, ++index) {
@@ -277,7 +277,7 @@ void testEnergyGradient(Basis basis)
     // Set up elements of SE(3)
     std::vector<TargetSpace> coefficients(domainDim+1);
 
-    MultiIndex index(domainDim+1, testPoints.size());
+    ::MultiIndex index(domainDim+1, testPoints.size());
     int numIndices = index.cycle();
     
     std::vector<typename RigidBodyMotion<double,3>::TangentVector> gradient(coefficients.size());
-- 
GitLab