An assertion statement that is verified at the compilation time. A feature of C++0x/C++11, supported by gcc since 4.3.

learn more… | top users | synonyms

0
votes
1answer
23 views

C++ short enum problems with InterlockedCompareExchange16 (with VS2012) [closed]

Having referenced this question: Can an enum class be converted to the underlying type?. In my code I have effectively: enum class STATE : short { EMPTY, PRESENT, PARTIAL, }; volatile ...
6
votes
2answers
171 views

Force deriving from a class virtually

We have a special framework for interfaces in our project, and part of the requirements is that classes which represent an interface may only be used as virtual base classes, not as non-virtual ones. ...
1
vote
1answer
104 views

C++11 static assert for equality comparable type?

How to static_assert a template type is EqualityComparable concept in C++11?
0
votes
2answers
45 views

How to C++11 static_assert for type constraint?

How can I make static_assert for specific type constraint? Currently I want to make my template only for unsigned int type, but not signed int type. Or, just only for integral type, or specific type ...
2
votes
2answers
110 views

Static assertions and SFINAE

Consider this: template <typename T> struct hash { static_assert(false,"Not implemented."); }; struct unhashable {}; template <typename T> auto test(const T &t) -> ...
1
vote
2answers
123 views

Using static_assert() to provide better compile-time errors (than the compilers)

Yesterday it took me ages to come to grips with a compile-time error caused by calling a const member function from a non-const object as in this example: // my utility header template<typename ...
3
votes
1answer
90 views

Comparing static field pointers at compile time

I have a class B deriving from class A. A declares a static field f, and B might declare a similar field of the same name. The following does not work: struct A { static int f; }; struct B : A { ...
1
vote
1answer
181 views

/boost/lockfree/queue.hpp: error: static assertion failed: (boost::has_trivial_destructor<T>::value)

I'm trying to substitute boost::lockfree::queue for std::queue in this file https://github.com/zaphoyd/websocketpp/blob/experimental/examples/broadcast_server/broadcast_server.cpp I've added #include ...
-2
votes
1answer
46 views

Compilation warning for Objects that contain non Copyable objects are unreadable

I've asked a similiar question before but now I'd like to be more specific. The problem I face is that I have an object that contains a non copyable object and when someone wants to use my interface ...
3
votes
4answers
90 views

Determine if same pointers are passed to a macro

There are set of macros, for debugging, logging, stack-trace displaying etc. One of them is like: #define ASSERT_IF_NULL_2(_ptr1, _ptr2) \ ASSERT(_ptr1); \ ASSERT(_ptr2); This is over ...
0
votes
2answers
97 views

C++11 is there a way to test method access level statically?

C++11 adds lots of new class templates which allow to test type traits statically, i.e. detect problems at compile time. I'm writing a test for a class and I need to make sure a given method is ...
1
vote
3answers
160 views

static_assert fails compilation even though template function is called nowhere

I use g++ 4.6.3, (currently default package for ubuntu 12.04) with the flag c++0x, and I stumble across this: template <typename T> inline T getValue(AnObject&) { static_assert(false , ...
0
votes
3answers
109 views

How to do static_assert with macros?

I have tried to use this suggestion to do a static assert, but I do not get a compilation error if I use it within a method of a template. The example follows : #include <iostream> #define ...
3
votes
3answers
205 views

c++ how to create my own warning in compilation time

I want to create my own warning in compilation time and not in pre-processor (as I've seen a few answers to) Let's say we have: class A { private: explicit A(A const& other); }; now if the ...
0
votes
1answer
71 views

C++ Static type checking (BOOST) incorrectly flagged by Eclipse CDT

So, I want to use the BOOST libraries to static-time check that my templates are being used by certain base classes, for example: template <class T> class A { // Code here } So, I wanted ...
2
votes
4answers
84 views

Safely removing C++ hidden virtual warning

I'm getting a compilation warning from Sun C++ 5.10 compiler about a hidden virtual method in some existing code that I'm changing. For whatever reason, the author has not implemented an override of ...
1
vote
0answers
61 views

Should a static_assert in a templated class constructor fire if I don't instantiate the class? [duplicate]

Possible Duplicate: C++0x static_assert and template instantiation The following code doesn't compile in GCC due to the static_assert: #include <ratio> #include <iostream> ...
8
votes
1answer
91 views

template metafunction for detecting template specialisations

Inspired by this question, i'm wondering if there is some compile-time check one can introduce to detect if two given template instantiations: template <typename T> class Templ... typedef ...
2
votes
2answers
165 views

Display integer at compile time in static_assert()

Here is a simplified version of what I'm trying to do enum First { a, b, c, nbElementFirstEnum, }; enum Second { a, b, c, nbElementSecondEnum, }; static_assert( ...
0
votes
2answers
153 views

Static Assert to check compile-time-constant is NOT passed to macro

Preamble: switch(nValue) { case X: ... case Y: ... default: ASSERT_FOR_DEFAULT(nValue); } ASSERT_FOR_DEFAULT is a macro, that will display a (custom) assertion dialog, to report hitting ...
6
votes
1answer
157 views

std::cout equivalent at compile time, or static_assert stringification of compile-time constant values in c++11

Is there a way to print the value of a constexpr or #defined value at compile time? I want the equivalent of std::cout <<, or some way to do something like constexpr int PI_INT = 4; ...
1
vote
1answer
165 views

How to check if two types are same at compiletime(bonus points if it works with Boost strong typedef)

I was wondering if it is possible to check if 2 types are same at compile time. What I came up with is(idk if it works because it feels hackish and IDK standard that good so IDK what to look for when ...
13
votes
4answers
385 views

When to use `static_assert` instead of SFINAE?

I have been using (and seen used) static_assert to flag undesired values of template parameter values. However, for all cases I came across it seems better and more elegant to disable those undesired ...
3
votes
2answers
137 views

Specifying allowed arguments in templates

Can I specify exactly what kind of arguments a template can receive? For example, I'd like to create a template that can only be instantiated with classes that are or extend class A. In Java, generics ...
4
votes
3answers
270 views

How to combine static_assert with sizeof and stringify?

Memory usage is quite critical in my application. Therefore I have specific asserts that check for the memory size at compile time and give a static_assert if the size is different from what we ...
5
votes
1answer
194 views

Static assertion if possible, dynamic assertion otherwise?

Let's say I have a template function that takes an integer and a const reference to an instance of type T. Now depending on the integer, only some T's are acceptible, otherwise an exception is thrown ...
0
votes
0answers
125 views

In VS2010, is it possible to use static_assert to verify an assumption about the offset of a variable from the start of a class?

Here is a simplified example: class A { enum {OFFSET = 4}; //Due to packing bool m_bool; }; template<class T> class B : public A { MyClass<T> m_class; }; Now supposing ...
4
votes
1answer
109 views

Should static_assert be triggered with a typedef?

I noticed that static assertions in class templates are not triggered when instantiations are typedef'ed. #include <type_traits> template <typename T> struct test_assert { ...
3
votes
1answer
93 views

Static assert to check static const class data members?

I have several classes with "static const" data members. I would like to know how to check their values at compile time with static_assert. Can I put static_assert directly in the class body ? ...
4
votes
2answers
405 views

C++11 static_assert: Parameterized error messages

In my previous question I wanted to use static_assert to restrict a template parameter to be a specific subtype. The question was answered, the code for archieving that is as follows: template ...
0
votes
2answers
366 views

C++11 static_assert (and functions to be used therein)

static_assert seems to be a very nice feature together with templates. However, I have trouble finding functions in the standard library for doing various tests at compile time. For example, I am ...
3
votes
2answers
263 views

How do I check if a template parameter is a power of two?

I want to create a structure that allocates statically an array of 2^N bytes, but I don't want the users of this structure to specify this size as the exponent. Example: my_stupid_array<char, ...
7
votes
1answer
300 views

static_assert doesn't recognize a const char* template parameter as constexpr: g++ bug?

Consider the definitions below. char right_string[]="::right_one."; char wrong_string[]="::wrong_one."; template<const char* str> void f(){ static_assert(str==::right_string, "Pass me ...
8
votes
3answers
1k views

constexpr, static_assert, and inlining

I previously asked about function overloading based on whether the arguments are constexpr. I'm trying to work around the disappointing answer to that question to make a smarter assert function. This ...
4
votes
3answers
111 views

Getting the number of static attributes in a class

I have a class consisting solely of static attributes acting as a sort of poor man's singleton. The purpose of which is to collect statistics from various points in the application. For our unit tests ...
0
votes
1answer
98 views

Will this static assert work correctlly?

I saw recently following code: #define MY_ASSERT_CONCAT_(a, b) a##b #define MY_ASSERT_CONCAT(a, b) MY_ASSERT_CONCAT_(a, b) #define MY_STATIC_ASSERT(e,msg) enum { ...
4
votes
4answers
231 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 ...
3
votes
1answer
183 views

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

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 ...
4
votes
3answers
211 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 { ...
15
votes
3answers
2k 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 ...
2
votes
2answers
161 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 ...
6
votes
2answers
518 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 " + ...
11
votes
1answer
622 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 { ...
3
votes
1answer
255 views

C++11: 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 ...
7
votes
2answers
830 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 ...
9
votes
3answers
713 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) == ...
1
vote
3answers
260 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
2answers
718 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: ...
5
votes
2answers
255 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 ...
16
votes
3answers
1k 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 ...

1 2