COMP: Corrected Clang-reported errors
This commit is contained in:
@ -32,19 +32,30 @@ License
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
// Psi-based chemistry
|
||||
typedef functionObjects::reactionsSensitivityAnalysis<psiChemistryModel>
|
||||
psiReactionsSensitivityAnalysisFunctionObject;
|
||||
|
||||
defineTemplateTypeNameAndDebugWithName
|
||||
(
|
||||
psiReactionsSensitivityAnalysisFunctionObject,
|
||||
"psiReactionsSensitivityAnalysis",
|
||||
0
|
||||
);
|
||||
|
||||
// Rho-based chemistry
|
||||
typedef functionObjects::reactionsSensitivityAnalysis<rhoChemistryModel>
|
||||
rhoReactionsSensitivityAnalysisFunctionObject;
|
||||
|
||||
defineTemplateTypeNameAndDebugWithName
|
||||
(
|
||||
rhoReactionsSensitivityAnalysisFunctionObject,
|
||||
"rhoReactionsSensitivityAnalysis",
|
||||
0
|
||||
);
|
||||
|
||||
namespace functionObjects
|
||||
{
|
||||
// Psi-based chemistry
|
||||
typedef reactionsSensitivityAnalysis<psiChemistryModel>
|
||||
psiReactionsSensitivityAnalysisFunctionObject;
|
||||
|
||||
defineTemplateTypeNameAndDebugWithName
|
||||
(
|
||||
psiReactionsSensitivityAnalysisFunctionObject,
|
||||
"psiReactionsSensitivityAnalysis",
|
||||
0
|
||||
);
|
||||
|
||||
addToRunTimeSelectionTable
|
||||
(
|
||||
functionObject,
|
||||
@ -52,18 +63,6 @@ namespace functionObjects
|
||||
dictionary
|
||||
);
|
||||
|
||||
|
||||
// Rho-based chemistry
|
||||
typedef reactionsSensitivityAnalysis<rhoChemistryModel>
|
||||
rhoReactionsSensitivityAnalysisFunctionObject;
|
||||
|
||||
defineTemplateTypeNameAndDebugWithName
|
||||
(
|
||||
rhoReactionsSensitivityAnalysisFunctionObject,
|
||||
"rhoReactionsSensitivityAnalysis",
|
||||
0
|
||||
);
|
||||
|
||||
addToRunTimeSelectionTable
|
||||
(
|
||||
functionObject,
|
||||
|
||||
Reference in New Issue
Block a user