From d5df6528fba1058639cd1ea10ff802c3b4c11038 Mon Sep 17 00:00:00 2001
From: Nick Draper <nick.draper@stfc.ac.uk>
Date: Mon, 19 Nov 2007 16:43:57 +0000
Subject: [PATCH] re #35 partial revert of solve compiler warnings

Linux was not happy with this.

We will revisit later and do it properly
---
 Code/Mantid/Kernel/inc/Support.h | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/Code/Mantid/Kernel/inc/Support.h b/Code/Mantid/Kernel/inc/Support.h
index 85b71c06139..f2682a7a86b 100644
--- a/Code/Mantid/Kernel/inc/Support.h
+++ b/Code/Mantid/Kernel/inc/Support.h
@@ -85,12 +85,12 @@ void writeMCNPX(const std::string& Line,std::ostream& OX);
 std::vector<std::string> StrParts(std::string Ln);
 
 /// Write a set of containers to a file
-template<template<typename T, typename A> class V,typename T, typename A> 
-int writeFile(const std::string& Fname,const T step,const V<T,A>& Y);
-template<template<typename T, typename A> class V,typename T, typename A> 
-int writeFile(const std::string& Fname,const V<T,A>& X,const V<T,A>& Y);
-template<template<typename T, typename A> class V,typename T, typename A> 
-int writeFile(const std::string& Fname,const V<T,A>& X,const V<T,A>& Y,const V<T,A>& Err);
+template<template<typename T> class V,typename T> 
+int writeFile(const std::string& Fname,const T step,const V<T>& Y);
+template<template<typename T> class V,typename T> 
+int writeFile(const std::string& Fname,const V<T>& X,const V<T>& Y);
+template<template<typename T> class V,typename T> 
+int writeFile(const std::string& Fname,const V<T>& X,const V<T>& Y,const V<T>& Err);
 
 
 /// Convert a VAX number to x86 little eindien
-- 
GitLab