Tagged Questions

10
votes
3answers
224 views

In C++0x is there something like static_assert which gives a warning instead of an error?

I would like to do this for usages which may be inefficient but not necessarily incorrect.
8
votes
3answers
171 views

Can static_assert check if a type is a vector?

Can static_assert check if a type is a vector? IE, an int would raise the assertion, whereas a vector<int> would not. I'm thinking of something along the lines of: static_assert(decltype(T) == ...
5
votes
5answers
688 views

What does static_assert do, and what would you use it for?

Could you give an example where static_assert(...) 'C++0x' would solve the problem in hand elegantly? I am familiar with run-time assert(...). When should I prefer static_assert(...) over regular ...
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 ...
3
votes
1answer
122 views

C++0x: std::max(a,b) in static_assert()?

I noticed, that in [24.4.7] of the last C++-Std Doc N3291 max ist not constexpr: template<class T> const T& max(const T& a, const T& b); Therefore, it is not allowed to use it in ...
-5
votes
1answer
225 views

decltype in static_assert

Why this (static_assert) in a definition of a class doesn't work? template<class IntT, IntT low = IntT(), IntT high = IntT()> struct X { ...