Skip to content
Snippets Groups Projects
Commit 30768a9f authored by chantrait's avatar chantrait
Browse files

fix merge

parent f0291de7
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ OFStream::OFStream(const std::string& filename) ...@@ -8,7 +8,7 @@ OFStream::OFStream(const std::string& filename)
m_fstream.open(filename); m_fstream.open(filename);
if (m_fstream.is_open()) { if (m_fstream.is_open()) {
m_ostream = &m_fstream; m_ostream = &m_fstream;
m_ostream->precision(15); // m_ostream->precision(15);
} else { } else {
std::stringstream error_msg; std::stringstream error_msg;
error_msg << "cannot create file " << rang::fgB::yellow << filename << rang::style::reset; error_msg << "cannot create file " << rang::fgB::yellow << filename << rang::style::reset;
......
...@@ -18,7 +18,6 @@ class IBoundaryConditionDescriptor ...@@ -18,7 +18,6 @@ class IBoundaryConditionDescriptor
free, free,
inflow, inflow,
neumann, neumann,
symmetry,
coupling, coupling,
outflow, outflow,
symmetry symmetry
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment