Skip to content
Snippets Groups Projects
Commit e680f808 authored by Tom Fischer's avatar Tom Fischer
Browse files

[BL] Remove unused fct. 'constructFileName'.

parent 2c6291aa
No related branches found
No related tags found
No related merge requests found
...@@ -140,15 +140,6 @@ std::string constructFormattedFileName(std::string const& format_specification, ...@@ -140,15 +140,6 @@ std::string constructFormattedFileName(std::string const& format_specification,
return result; return result;
} }
std::string constructFileName(std::string const& prefix,
int const process_id,
int const timestep,
double const t)
{
return prefix + "_pcs_" + std::to_string(process_id) + "_ts_" +
std::to_string(timestep) + "_t_" + std::to_string(t);
}
double swapEndianness(double const& v) double swapEndianness(double const& v)
{ {
union union
......
...@@ -47,11 +47,6 @@ std::string constructFormattedFileName(std::string const& prefix, ...@@ -47,11 +47,6 @@ std::string constructFormattedFileName(std::string const& prefix,
int const timestep, int const timestep,
double const t); double const t);
std::string constructFileName(std::string const& prefix,
int const process_id,
int const timestep,
double const t);
/** /**
* \brief write value as binary into the given output stream * \brief write value as binary into the given output stream
* *
......
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