File tree 3 files changed +7
-6
lines changed
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)
90
90
fileStream.open ((myStream.str ()).c_str ());
91
91
fileStream.close ();
92
92
93
- myStream = std::stringstream ();
93
+ myStream.str (" " );
94
+ myStream.clear ();
94
95
fileName = " warning" ;
95
96
myStream << folder << " errorsAndWarnings/" << fileName << " _CPU" << rankCpu << " .out" ;
96
97
fileStream.open ((myStream.str ()).c_str ());
Original file line number Diff line number Diff line change @@ -54,10 +54,10 @@ class Decomposition
54
54
55
55
public: // Ctors
56
56
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 ;
61
61
~Decomposition () = default ;
62
62
63
63
Original file line number Diff line number Diff line change 33
33
34
34
#include " Relaxation.h"
35
35
36
- // ! \class RelaxationPTMU
36
+ // ! \class RelaxationPTMu
37
37
// ! \brief Pressure-Temperature-Chemical Potential relaxation / Phase change
38
38
class RelaxationPTMu : public Relaxation
39
39
{
You can’t perform that action at this time.
0 commit comments