[flang] removed unused func in tests

Original-commit: flang-compiler/f18@4c6e6ad4d0
Tree-same-pre-rewrite: false
This commit is contained in:
Jean Perier 2019-04-11 07:59:12 -07:00
parent 44e0c5084d
commit d1659ca3b4
1 changed files with 0 additions and 6 deletions

View File

@ -23,12 +23,6 @@
using namespace Fortran::evaluate;
template<typename A> std::string AsFortran(const A &x) {
std::stringstream ss;
ss << x;
return ss.str();
}
// helper to call functions on all types from tuple
template<typename... T> struct RunOnTypes {};
template<typename Test, typename... T>