diff --git a/src/language/utils/OFStream.cpp b/src/language/utils/OFStream.cpp
index 7fbae5890c2e300eb6eb8d244452457149c5fd70..237305c0a1fc40c2ade92925ddad3acc76c9ce3c 100644
--- a/src/language/utils/OFStream.cpp
+++ b/src/language/utils/OFStream.cpp
@@ -8,7 +8,7 @@ OFStream::OFStream(const std::string& filename)
     m_fstream.open(filename);
     if (m_fstream.is_open()) {
       m_ostream = &m_fstream;
-      m_ostream->precision(15);
+//      m_ostream->precision(15);
     } else {
       std::stringstream error_msg;
       error_msg << "cannot create file " << rang::fgB::yellow << filename << rang::style::reset;
diff --git a/src/mesh/MeshFlatNodeBoundary.cpp b/src/mesh/MeshFlatNodeBoundary.cpp
index 77777a6981214be5975ce43ec0f791f09b855bff..b7de42715eff88510119b54507ed32323365c817 100644
--- a/src/mesh/MeshFlatNodeBoundary.cpp
+++ b/src/mesh/MeshFlatNodeBoundary.cpp
@@ -14,7 +14,7 @@ MeshFlatNodeBoundary<Dimension>::_checkBoundaryIsFlat(const TinyVector<Dimension
   const NodeValue<const Rd>& xr = mesh.xr();
 
   bool is_bad = false;
-  
+
   auto node_list = this->m_ref_node_list.list();
   parallel_for(node_list.size(), [=, &is_bad](int r) {
     const Rd& x = xr[node_list[r]];
diff --git a/src/scheme/IBoundaryConditionDescriptor.hpp b/src/scheme/IBoundaryConditionDescriptor.hpp
index b95ad7088c9579ccb3cd941bf56e09a6eeba57f2..9f859875f45c6fc55d21a5284b3acbd84ceec6c5 100644
--- a/src/scheme/IBoundaryConditionDescriptor.hpp
+++ b/src/scheme/IBoundaryConditionDescriptor.hpp
@@ -18,7 +18,6 @@ class IBoundaryConditionDescriptor
     free,
     inflow,
     neumann,
-    symmetry,
     coupling,
     outflow,
     symmetry