Remove is_pod trait, and replace with is_standard_layout requirement

This commit is contained in:
Lee Clagett 2017-12-19 20:30:02 -05:00
parent 35d5aa36c9
commit 951716146f
3 changed files with 15 additions and 12 deletions

View file

@ -67,18 +67,14 @@ namespace tools {
}
};
template<typename T>
T& unwrap(scrubbed<T>& src) { return src; }
template<typename T>
const T& unwrap(scrubbed<T> const& src) { return src; }
template <class T, size_t N>
using scrubbed_arr = scrubbed<std::array<T, N>>;
} // namespace tools
// Partial specialization for std::is_pod<tools::scrubbed<T>> so that it can
// pretend to be the containted type in those contexts.
namespace std
{
template<class t_scrubbee>
struct is_pod<tools::scrubbed<t_scrubbee>> {
static const bool value = is_pod<t_scrubbee>::value;
};
}
#endif // __cplusplus