mirror of
https://github.com/OPM/opm-simulators.git
synced 2026-07-30 02:27:55 -05:00
change the order of OPM_UNUSED and variable name
it seems like some compilers (GCC 4.9.2?) are picky about this and require ```c++ TypeName VariableName __attribute__ ((__unused__)) ```
This commit is contained in:
@@ -136,7 +136,7 @@ class EclPeacemanWell : public BaseAuxiliaryModule<TypeTag>
|
||||
|
||||
// retrieve the solution dependent quantities that are only updated at the
|
||||
// beginning of a time step from the IntensiveQuantities of the model
|
||||
void updateBeginTimestep(const IntensiveQuantities& OPM_UNUSED intQuants)
|
||||
void updateBeginTimestep(const IntensiveQuantities& intQuants OPM_UNUSED)
|
||||
{}
|
||||
|
||||
// retrieve the solution dependent quantities from the IntensiveQuantities of the
|
||||
|
||||
Reference in New Issue
Block a user