Skip to content
Snippets Groups Projects
Commit d5df6528 authored by Nick Draper's avatar Nick Draper
Browse files

re #35

partial revert of solve compiler warnings

Linux was not happy with this.

We will revisit later and do it properly
parent 8aba5a52
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment