Is there a way to define a non-dynamic constructor which restricts the range of whichever default constructor lets me do
struct foo {
int *bar;
};
static __thread foo myfoo[10] = {nullptr};
?
i.e., I want to do
class baz {
public:
baz() = default;
constexpr baz(decltype(nullptr)) : qux(nullptr) { }
private:
int *qux;
};
static __thread baz mybaz[10] = {nullptr};
and have it work.
Currently, icpc tells me
main.cpp(9): error: thread-local variable cannot be dynamically initialized
static __thread baz mybaz[10] = {nullptr};
^
constexpr baz(int* ptr = nullptr) : qux(ptr) { }– PiotrNycz Nov 11 '12 at 23:40unique_ptr). If what you're suggesting is actually adding an additional constructorbaz() = defaultorconstexpr baz() : qux(nullptr) { }, then I could do that, but wouldstatic __thread baz mybaz[10];initialize the array to the default values? – Jason Nov 17 '12 at 16:49constexpr baz() = default;, it says "error: explicitly defaulted function ‘constexpr baz::baz()’ cannot be declared as constexpr because the implicit declaration is not constexpr" However, icpc accepts it, and both seem to work fine if I get rid of the "= {nullptr}" and leave the constructor as-is. – Jason Nov 17 '12 at 20:31