I currently have a variadic function which takes an arbitrary number of arguments of arbitrary types (duh), however, I want to restrict the types to ones which are POD only, and also the same size or smaller than that of a void*.
The void* check was easy, I just did this:
static_assert(sizeof...(Args) <= sizeof(PVOID), "Size of types must be <= memsize.");
However I can't work out how to do the same for std::is_pod.
Is this possible to do?
sizeof...(Args)probably doesn't do what you intend - it returns how many arguments are in the argument pack (and not their sizes). See this. If you want to limit their size, doing something likestatic const bool value = sizeof(Head) <= sizeof(void*) && ...would help, see this. – Vitus Jun 5 '11 at 19:49