Merge pull request #2969

95171614 Remove is_pod trait, and replace with is_standard_layout requirement (Lee Clagett)
This commit is contained in:
Riccardo Spagni 2018-01-27 17:26:58 -08:00
commit 76a6a794f9
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD
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