From 061d5426c123d0b57ad311f8ae7686a1c7155cad Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@igpm.rwth-aachen.de>
Date: Wed, 16 Nov 2011 14:54:46 +0000
Subject: [PATCH] adapt to new template parameters of the target spaces

[[Imported from SVN: r8208]]
---
 harmonicmaps.cc | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/harmonicmaps.cc b/harmonicmaps.cc
index eacb9927..b5348540 100644
--- a/harmonicmaps.cc
+++ b/harmonicmaps.cc
@@ -37,19 +37,19 @@ const int dim = 3;
 
 // Image space of the geodesic fe functions
 #ifdef ROTATION2
-typedef Rotation<2,double> TargetSpace;
+typedef Rotation<double,2> TargetSpace;
 #endif
 #ifdef ROTATION3
-typedef Rotation<3,double> TargetSpace;
+typedef Rotation<double,2> TargetSpace;
 #endif
 #ifdef UNITVECTOR2
-typedef UnitVector<2> TargetSpace;
+typedef UnitVector<double,2> TargetSpace;
 #endif
 #ifdef UNITVECTOR3
-typedef UnitVector<3> TargetSpace;
+typedef UnitVector<double,3> TargetSpace;
 #endif
 #ifdef REALTUPLE1
-typedef RealTuple<1> TargetSpace;
+typedef RealTuple<double,1> TargetSpace;
 #endif
 
 // Tangent vector of the image space
-- 
GitLab