[properties] replace BEGIN/END_PROPERTIES macro calls

This commit is contained in:
Bernd Flemisch
2020-06-08 17:11:48 +02:00
parent 880c5223ac
commit 725c022e69
114 changed files with 234 additions and 234 deletions

View File

@@ -56,7 +56,7 @@ template <class TypeTag>
class FlashModel;
}
BEGIN_PROPERTIES
namespace Opm::Properties {
//! The type tag for the isothermal single phase problems
NEW_TYPE_TAG(FlashModel, INHERITS_FROM(MultiPhaseBaseModel,
@@ -123,7 +123,7 @@ struct EnableDiffusion<TypeTag, TTag::FlashModel> { static constexpr bool value
template<class TypeTag>
struct EnableEnergy<TypeTag, TTag::FlashModel> { static constexpr bool value = false; };
END_PROPERTIES
} // namespace Opm::Properties
namespace Opm {

View File

@@ -35,7 +35,7 @@
#include <opm/models/io/vtkenergymodule.hh>
#include <opm/models/io/vtkdiffusionmodule.hh>
BEGIN_PROPERTIES
namespace Opm::Properties {
//! The type of the flash constraint solver
template<class TypeTag, class MyTypeTag>
@@ -44,6 +44,6 @@ struct FlashSolver { using type = UndefinedProperty; };
template<class TypeTag, class MyTypeTag>
struct FlashTolerance { using type = UndefinedProperty; };
END_PROPERTIES
} // namespace Opm::Properties
#endif