Skip to content
Snippets Groups Projects
Commit 045ac809 authored by Timo Koch's avatar Timo Koch
Browse files

[propertysystem] Use convenience alias is_same_v

parent 8218cf65
No related branches found
No related tags found
1 merge request!2512[propertysystem] Some cleanup
...@@ -42,7 +42,7 @@ namespace Dumux::Properties::Detail { ...@@ -42,7 +42,7 @@ namespace Dumux::Properties::Detail {
//! check if a property P is defined //! check if a property P is defined
template<class P> template<class P>
constexpr auto isDefinedProperty(int) constexpr auto isDefinedProperty(int)
-> decltype(std::integral_constant<bool, !std::is_same<typename P::type, UndefinedProperty>::value>{}) -> decltype(std::integral_constant<bool, !std::is_same_v<typename P::type, UndefinedProperty>>{})
{ return {}; } { return {}; }
//! fall back if a Property is defined //! fall back if a Property is defined
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment