Tagged Questions
11
votes
3answers
514 views
Integrate type name in static_assert output?
I like to give helpful errors / messages, and I also want to do so for my static_asserts. The problem is, that they depend on template parameters. Normally, those parameters will get displayed on way ...
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) == ...
7
votes
2answers
138 views
C++11 - static_assert within constexpr function?
How would one properly do a static_assert within a constexpr function? For example:
constexpr int do_something(int x)
{
static_assert(x > 0, "x must be > 0");
return x + 5;
}
This is not ...
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 ...
6
votes
2answers
135 views
static_assert - a way to dynamically customize error message
Is there a way to make static_assert's string being dynamically customized and then displayed?
What I mean is something like:
//pseudo code
static_assert(Check_Range<T>::value, "Value of " + ...
6
votes
1answer
226 views
Is there a compile-time func/macro to determine if a C++0x struct is POD?
I'd like to have a C++0x static_assert that tests whether a given struct type is POD (to prevent other programmers from inadvertently breaking it with new members). ie,
struct A // is a POD type
{
...
6
votes
3answers
287 views
How to do a static assert that a pointer cast is trivial?
Let's say I have these types:
struct A {
int a;
};
struct B {
int b;
};
struct C : public A, public B {
int c;
};
A C* pointer can be cast to A* pointer without adjusting the actual ...
6
votes
6answers
2k views
BOOST_STATIC_ASSERT without boost
Since boost is forbidden in a company I work for I need to implement its functionality in pure C++. I've looked into boost sources but they seem to be too complex to understand, at least for me. I ...
5
votes
5answers
689 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
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
3answers
123 views
Is there a way to prevent a class from being derived from twice using a static assert and type trait?
I realize this is a contrived example, but I want a compile check to prevent this...
class A {};
class B : public A {};
class C : public A {};
class D : public B, public C
{
...
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&){
...
3
votes
4answers
287 views
Use static_assert to check types passed to macro
I unfortunately have several macros left over from the original version of my library that employed some pretty crazy C. In particular, I have a series of macros that expect certain types to be passed ...
3
votes
6answers
720 views
static assert for const variables?
Static asserts are very convenient for checking things in compile time. A simple static assert idiom looks like this:
template<bool> struct StaticAssert;
template<> struct ...
2
votes
2answers
117 views
Will this static_assert ever be triggered?
template<class Int_T,class Integral,typename Best_Fit<Int_T>::type Min_Range,
typename Best_Fit<Int_T>::type Max_Range>
auto operator+(Integral left,const ...
2
votes
2answers
192 views
How to statically check an expression?
I have 4 int constants :
const int a1 = 1024;
const int a2 = 768;
const int b1 = 640;
const int b2 = 480;
and I want to statically check that they have the same ratio. To statically check, I am ...
2
votes
2answers
145 views
How to test whether expression is a temporary?
With the following macro:
#define ASSERT_IF_TEMP(expr) static_assert(?, "Is temporary!");
What should I put for question mark?
2
votes
2answers
377 views
boost static_assert with message?
on 1.43 boost it seems that BOOST_STATIC_ASSERT just allows to put a boolean value, is there some alternative that allows me to display a message as well on the compile error?
1
vote
3answers
159 views
Static Assert inside struct allowed?
I have several template settings struct, is it ok, to use static asserts in these structs?
template<typename T, int N, (and so on...)>
struct Settings{
static const int n = N;
...
1
vote
1answer
169 views
adding string literal to static_assert
Is there a way to combine what's going to be output by static_assert? What I mean is this:
template<class T>
struct X
{
static_assert(std::is_signed<T>::value, "Type " + T + " must be ...
0
votes
2answers
215 views
static_assert not working in Visual C++ 10
I was under impression Visual C++ 10 had built-in static_assert. However when I compile the following
void test()
{
static_assert( sizeof( char ) == 1, "" );
}
I get
error C3861: ...
0
votes
2answers
136 views
Can't use SFINAE, type traits and static_assert in MSVC10
I've been investigating the use of some judicious static assertions to improve error messages. Here's an example:
#include <type_traits>
template<typename T> struct ...
0
votes
3answers
133 views
Another problem with decltype
template<class IntT, IntT low = IntT(), IntT high = IntT()>
struct X
{
static_assert(std::is_same<decltype(low),decltype(high)>::value,"Different types not allowed");//this should ...
0
votes
2answers
135 views
How to statically assert a common property of many classes
Let's say I have 3 classes. I expect sizeof() each class to be exactly the same--say 512 bytes.
How can I use something like BOOST_STATIC_ASSERT to apply to all of them such that
I only need to use ...
-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
{
...