Skip to content
Snippets Groups Projects
Commit b731c50e authored by Ansgar Burchardt's avatar Ansgar Burchardt
Browse files

Correct specialization of `is_range`

Closes #58
parent be5b784c
No related branches found
No related tags found
2 merge requests!212Fix link to build system doc,!183Fix `max_value` and `min_value`
......@@ -418,8 +418,8 @@ namespace Dune
// version for types with begin() and end()
template<typename T>
struct is_range<T,
decltype(std::declval<T>().begin()),
decltype(std::declval<T>().end())>
typename std::enable_if<(sizeof std::declval<T>().begin() != 0)>::type,
typename std::enable_if<(sizeof std::declval<T>().end() != 0)>::type>
: public std::true_type
{};
#endif
......
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