| 556 | |
| 557 | template<typename It> |
| 558 | static inline auto deref_noexcept(It& it) MOODYCAMEL_NOEXCEPT -> decltype(*it) |
| 559 | { |
| 560 | return *it; |
| 561 | } |
| 562 | |
| 563 | #if defined(__clang__) || !defined(__GNUC__) || __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8) |
| 564 | template<typename T> struct is_trivially_destructible : std::is_trivially_destructible<T> { }; |
no outgoing calls
no test coverage detected