checkComponent: improve output
as this is called multiple times for a component we get duplicate output. improve by also including the Evaluation template parameters in the output.
This commit is contained in:
parent
69aaf44fd2
commit
180f34dea7
@ -41,7 +41,9 @@
|
|||||||
template <class Component, class Evaluation>
|
template <class Component, class Evaluation>
|
||||||
void checkComponent()
|
void checkComponent()
|
||||||
{
|
{
|
||||||
std::cout << "Testing component '" << Opm::demangle(typeid(Component).name()) << "'\n";
|
std::cout << "Testing component '"
|
||||||
|
<< Opm::demangle(typeid(Component).name()) << "', Evaluation='"
|
||||||
|
<< Opm::demangle(typeid(Evaluation).name()) << "'\n";
|
||||||
|
|
||||||
// make sure the necessary typedefs exist
|
// make sure the necessary typedefs exist
|
||||||
typedef typename Component::Scalar Scalar;
|
typedef typename Component::Scalar Scalar;
|
||||||
|
Loading…
Reference in New Issue
Block a user