File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,8 @@ void Errors::prepareErrorFiles(const std::string& folder)
9090 fileStream.open ((myStream.str ()).c_str ());
9191 fileStream.close ();
9292
93- myStream = std::stringstream ();
93+ myStream.str (" " );
94+ myStream.clear ();
9495 fileName = " warning" ;
9596 myStream << folder << " errorsAndWarnings/" << fileName << " _CPU" << rankCpu << " .out" ;
9697 fileStream.open ((myStream.str ()).c_str ());
Original file line number Diff line number Diff line change @@ -54,10 +54,10 @@ class Decomposition
5454
5555public: // Ctors
5656 Decomposition () = default ;
57- Decomposition (const Decomposition& other) = default ;
58- Decomposition (Decomposition&& other) = default ;
59- Decomposition& operator =(const Decomposition& other) & = default ;
60- Decomposition& operator =(Decomposition&& other) & = default ;
57+ Decomposition (const Decomposition& /* other*/ ) = default ;
58+ Decomposition (Decomposition&& /* other*/ ) = default ;
59+ Decomposition& operator =(const Decomposition& /* other*/ ) & = default ;
60+ Decomposition& operator =(Decomposition&& /* other*/ ) & = default ;
6161 ~Decomposition () = default ;
6262
6363
Original file line number Diff line number Diff line change 3333
3434#include " Relaxation.h"
3535
36- // ! \class RelaxationPTMU
36+ // ! \class RelaxationPTMu
3737// ! \brief Pressure-Temperature-Chemical Potential relaxation / Phase change
3838class RelaxationPTMu : public Relaxation
3939{
You can’t perform that action at this time.
0 commit comments