constexpr is a modifier introduced in C++11, which informs the compiler that the value of a function or variable is known or can be calculated at compile time. As such, it can be used as a constant in places where otherwise it couldn't be.

learn more… | top users | synonyms

1
vote
0answers
32 views

Validate contents of std::initializer_list at compile time

I am attempting to determine at compile time if all the values in a std::initialzier_list are unique. I was able to locate a solution to valiate the size of a list but have not been unable to apply it ...
3
votes
2answers
113 views

constexpr function to add an integer to an array

I am trying to implement a constexpr function "add42" that would allow me to do: constexpr array<int,5> arr = {1,2,3,4,5}; constexpr array<int,5> arr2 = add42(0,arr); //I want ...
1
vote
2answers
105 views

constexpr class with array constructor methods

I am trying to write a compile time class for multivariate polynomials (i.e. like P(X,Y,Z) = X^2 + XYZ + YZ, don't worry too much about the mathematics here): template<int DIM, int DEGREE> ...
0
votes
0answers
33 views

expression is not an intergral constant clang libc++ threading

I'm trying to compile a really simple thread program on my linux machine(ubuntu), but clang seems to still throw an error at me even when I specify libc++. my program is: #include <iostream> ...
7
votes
1answer
194 views

Nested struct breaks constexpr despite being identical to global ones

I'm having trouble with the following code: template<typename T> constexpr int get(T vec) { return vec.get(); } struct coord { constexpr int get() const { return x; } int x; }; struct ...
3
votes
1answer
89 views

running into trouble with constexpr

I run into trouble while initializing a class with constants: Why the initialisation with a pointer to a member in the same class results into an error? The error comes up without using the class ...
4
votes
2answers
123 views

constexpr not working if the function is declared inside class scope

I am using g++4.8.0, which doesn't contain earlier constexpr bug. Thus below code works fine: constexpr int size() { return 5; } int array[size()]; int main () {} However, if I enclose both the ...
2
votes
1answer
62 views

string literal parameter not accepted to a constexpr function

Call to the extract function below does not work for me on g++ 4.9.0 (20130421). The error I get is that s1 is not a constant expression. If i can be initialized as constexpr then j and k should too. ...
0
votes
1answer
56 views

Please explain constexpr [duplicate]

I have a class which contains three static constants, static const int NUM_POINTS = 2000; static const float LAKE_THRESHOLD = 0.3; static const int NUM_LLOYD_ITERATIONS = 2; In the header file. I ...
30
votes
1answer
1k views

static constexpr variable vs function

Is there a difference between declaring floating point constant as a static constexpr variable and a function as in example below, or is it just a matter of style? class MY_PI { public: static ...
10
votes
2answers
242 views

g++ c++11 constexpr evaluation performance

g++ (4.7.2) and similar versions seem to evaluate constexpr surprisingly fast during compiletime. On my machines in fact much faster than the compiled program during runtime. Is there a reasonalbe ...
6
votes
3answers
121 views

Undefined symbols for constexpr function

When I attempt compiling the following code I get a linker error: Undefined symbols for architecture x86_64: "Foo()", referenced from: _main in main.o using LLVM 4.2. This behavior only occurs when ...
0
votes
3answers
60 views

Does C++ allow CTFE?

Tested a simple utf8 strlen function and was quite surprised that trunk clang completely eliminated it (gcc doesn't): static int strlenutf8(const char* s) { int i = 0, l = 0; while (s[i]) { ...
-3
votes
1answer
118 views

How to declare a compile time constant function in C#

In C++, we can use macro or constexpr (as C++11 said). What can we do in C#? Please see "Cannot declare..." comment for context: static class Constant { // we must ensure this is compile time ...
9
votes
1answer
177 views

Is it legal to declare a constexpr initializer_list object?

As a question that came up during the discussion of this SO question: Is it legal, maybe with N3471, to declare a constexpr std::initializer_list object? Example: constexpr ...
12
votes
1answer
348 views

Confusion about constant expressions

This is some kind of follow-up for this topic and deals about a little part of it. As with the previous topic, let's consider that our compiler has constexpr functions for std::initializer_list and ...
0
votes
0answers
46 views

constexpr different exception specifier when splitting definition and declaration

I have the following test piece of code tested on gcc 4.7.2: #include <iostream> #include <type_traits> #ifdef REMOVE_CONSTEXPR_NOEXCEPT # define CONSTEXPR_NOEXCEPT #else # define ...
2
votes
1answer
146 views

constexpr array and std::initializer_list

I was trying to write an compile-time valarray that could be used like this: constexpr array<double> a = { 1.0, 2.1, 3.2, 4.3, 5.4, 6.5 }; static_assert(a[0] == 1.0, ""); static_assert(a[3] == ...
4
votes
1answer
140 views

Should I use constexpr like this?

I have this pretty simple function, I have some values that need to be calculated but only once and the best time would be at compile time. These values only matter within this function. Is this a ...
5
votes
1answer
238 views

static constexpr pointer-to-function, difference between compilers

When answering this question, I tried the following code with gcc (code compiled) and clang (code rejected): typedef long (*func)(int); long function(int) { return 42; } struct Test { static ...
10
votes
1answer
301 views

Using “constexpr” to use string literal for template parameter

I have written some code to cast const char* to int by using constexpr and thus I can use a const char* as a template argument. Here is the code: #include <iostream> class conststr { ...
3
votes
2answers
115 views

implicit constexpr?

Can C++11 compilers (and do they) notice that a function is a constexpr and treat them as such even if they are not declared to be constexpr? I was demonstrating the use of constexpr to someone using ...
4
votes
1answer
215 views

constexpr replacements for math constants like M_PI

Are there any C++11 constexpr constants which can be used instead of the constant macros from <cmath>, i.e. constants like M_PI and friends? Or lacking that, any global const values which ...
0
votes
1answer
71 views

Difficulty converting function to a single equation (constexpr)

I was converting a lot of the bit-operating functions of my code base into constexpr. No real reason for doing so, mostly 'just because'. Making a function constexpr in C++11 requires that the code ...
4
votes
1answer
142 views

Override for constant expressions?

Is it possible to override a function and/or template based on whether something is a constant expression? Basically what I'd like to do is build a string class that if handed a static string, or a ...
0
votes
0answers
54 views

reference with constexpr causes multiple definition error

I program for MCUs with CodeSourcery g++ lite which is based on gcc 4.7.2 I want to define peripheral objects which is located at certain address. So I try to use reference with the constexpr ...
2
votes
4answers
295 views

Compute nth prime at compile time [closed]

The C++11 features, with constexpr and template argument packs, should in my opinion be strong enough to perform some rather complex computations. One possible example for which I have a practical ...
7
votes
1answer
193 views

Detecting constexpr with SFINAE

I'm working on upgrading some C++ code to take advantage of the new functionality in C++11. I have a trait class with a few functions returning fundamental types which would most of the time, but not ...
8
votes
1answer
227 views

Should I always replace 'const int' with 'constexpr int' in C++11 whenever possible?

Would you replace const int one = 1; const int two = 2; with this? constexpr int one = 1; constexpr int two = 2; Is my understanding correct that both blocks are semantically identical and that ...
2
votes
3answers
168 views

constexpr, arrays and initialization

Is there anything in the world of C++ that would make what I'm trying to do possible? template < typename T , size_t Size > struct array { constexpr T buf[Size]; constexpr ...
2
votes
1answer
182 views

c++11 class member array size constexpr forward declaration

I want to exclude some headers from my include chain after having used them. From what I know there is no exclude "header.h" in c++11. Pseudo Code Wishful thinking: #include "the_bad_header.h" ...
3
votes
2answers
247 views

constexpr string literals in anonymous namespace?

I have the following example code which uses a string literal as a template parameter, such that the base class template can access the string. The code compiles, but I get a warning which I do not ...
0
votes
0answers
78 views

Unique address for constexpr variable

Is it possible to have a unique address allocated for a constexpr variable, i.e. the same for all translation units where the variable is available (usually through a header)? Consider the following ...
2
votes
1answer
150 views

How to define a constant double at namespace scope with external linkage?

I am trying to create a namespace-scope constant with external linkage // in some include file: namespace foo { constexpr double bar() { return 1.23456; } // internal linkage constexpr ...
6
votes
2answers
239 views

What am I allowed to do with a static, constexpr, in-class initialized data member?

This is probably a bit of an unusual question, in that it asks for a fuller explanation of a short answer given to another question and of some aspects of the C++11 Standard related to it. For ease ...
2
votes
1answer
107 views

integral_constant and template argument deduction

I would like to capture compile time constant integers passed to a function into templated types. The future goal is to roll my own (very limited) expression template that creates expressions from ...
21
votes
3answers
385 views

Why do we need to mark functions as constexpr?

C++11 allows functions declared with the constexpr specifier to be used in constant expressions such as template arguments. There are stringent requirements about what is allowed to be constexpr; ...
2
votes
2answers
180 views

gcc 4.7 and recursive constexpr functions

I'm playing a little bit with constexpr recursion and try to see how it is compiled and I don't understand under which circumstances gcc choose to calculate the recursion at compile time or at run ...
2
votes
2answers
159 views

constexpr and static member declaration with templete class

Please see the code: #include <iostream> #include <typeinfo> template<int N> struct C { static constexpr int n = N; using this_type_1 = C<n>; using this_type_2 = ...
-1
votes
4answers
98 views

Using an int as a template parameter that is not known until run-time

I am trying to use an integer as a template parameter for a class. Here is a sample of the code: template< int array_qty > class sample_class { public: std::array< std::string, ...
1
vote
1answer
244 views

Proper initialization of static constexpr array in class template?

Static class members in C++ have caused a little confusion for me due to the standard's verbiage: 9.4.2 Static data members [class.static.data] The declaration of a static data member in its ...
7
votes
1answer
228 views

Is there a way to specialize a function between compile time and run time?

With constexpr, A function can be evaluated at compile time or runtime depending upon the arguments. But usually, the algorithm has to be different between compile time and runtime. Eg. Consider the ...
11
votes
1answer
914 views

Does constexpr imply inline?

Consider the following inlined function : // Inline specifier version #include<iostream> #include<cstdlib> inline int f(const int x); inline int f(const int x) { return 2*x; } int ...
3
votes
2answers
126 views

Design of constexpr classes : merging constexpr and non-constexpr versions?

Consider a class that just wraps a value at runtime : template <typename Type> class NonConstValue { public: NonConstValue(const Type& val) : _value(val) {;} Type get() ...
11
votes
1answer
214 views

static constexpr member function in templated using expression not found

For the following code #include <array> template<unsigned MaxP, typename type> struct kernel { static constexpr unsigned max_pole(unsigned P) { return P>MaxP? MaxP:P; } ...
2
votes
2answers
361 views

single expression helper for compile-time enforced constexpr function evaluation possible?

@cyberpunk_ is trying to achieve something and made some questions about it but all the chase boils down to this: Is it possible to build a tool to enforce compile-time evaluation of a constexpr ...
3
votes
3answers
298 views

When should literal classes be used in C++?

Can someone tell me when are literal classes needed in C++? I am getting a little confused from constexpr constructors, constexpr members, and I can't see what the point is. I'd like to see some ...
6
votes
1answer
278 views

Forcing a constant expression to be evaluated during compile-time?

A few days ago I asked by which criteria the compiler decides whether or not, to compute a constexpr function during compile time. When does a constexpr function get evaluated at compile time? As ...
5
votes
2answers
189 views

Can std::array be used in a constexpr class?

I am currently creating a class with a constexpr constructor and I wonder if I can use an std::array to store the data of this class. Does the standard explicitly specify that an std::array has a ...
10
votes
1answer
186 views

Empty destructor vs literal destructor

Consider the following code: #include <iostream> class Test { public: constexpr Test(const int x) : _x(x) {} constexpr int get() const {return _x;} ~Test() {} // ...

1 2 3