Tagged Questions

7
votes
2answers
181 views

Why prefer template-based static assert over typedef-based static assert?

There're two widely used implementations of static assert for versions of C++ that don't have built-in static_assert. The first one is used in Boost and uses a template and a specialization of that ...
4
votes
3answers
95 views

Can I exclude some methods from manual template instantiation?

We have complex template classes that have some methods which will not work with certain policies or types. Therefore, when we detect those types (at compile time, using type-traits) we fire a static ...
4
votes
2answers
143 views

static_assert in a function declaration

I've got quite a simple function using static_assert. The trouble is that I want to static_assert on behaviour involved in the function declaration- inferring the return type, specifically. There ...
4
votes
4answers
466 views

Wanted: a C++ template idea to catch an issue, but at compile time?

We have a const array of structs, something like this: static const SettingsSuT _table[] = { {5,1}, {1,2}, {1,1}, etc }; the structure has the following: size_bytes: num_items: Other "meta data" ...
3
votes
1answer
90 views

How do I prevent diamond pattern in nested template types using static assert and type traits? [closed]

Possible Duplicate: Is there a way to prevent a class from being derived from twice using a static assert and type trait? What I'd like to prevent is more than one of the C based template ...
3
votes
1answer
99 views

How to static_assert in member templates only when they are actually used?

Consider this simple class: template<class T> class Foo{ public: Foo(T const& val) : _val(val) {} template<class U> Foo(Foo<U> const&){ ...