mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
index type can only be deduced from class, else it is size_t
This commit is contained in:
parent
22de6f2c56
commit
b12ef20fb7
@ -134,21 +134,18 @@ namespace ngcore
|
||||
private:
|
||||
template<typename T2>
|
||||
static constexpr auto check(T2* t) -> typename T2::index_type { return *t; }
|
||||
// this function is needed for visual because it seems to not lazy evaluate template arguments...
|
||||
template<typename T2>
|
||||
static constexpr auto check(T2* t) -> typename std::enable_if_t<std::is_integral_v<T>> {}
|
||||
static constexpr auto check(...) -> decltype(std::declval<T>().Size())
|
||||
{ return decltype(std::declval<T>().Size())(); }
|
||||
static constexpr size_t check(...);
|
||||
|
||||
public:
|
||||
using type = decltype(check((T*) nullptr)); // NOLINT
|
||||
};
|
||||
|
||||
} // namespace detail
|
||||
|
||||
// Get index type of object. If object has a typedef index_type this type is returned
|
||||
// else decltype(obj.Size()) is returned.
|
||||
// Get index type of object. If object has a typedef index_type it is this type, else size_t
|
||||
template<typename T>
|
||||
using index_type = typename detail::IndexTypeHelper<T>::type;
|
||||
|
||||
} // namespace ngcore
|
||||
|
||||
#endif // NETGEN_CORE_UTILS_HPP
|
||||
|
Loading…
Reference in New Issue
Block a user