The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
112 views

non-dynamic constructors in c++ with icpc?

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}; ? ...
0
votes
0answers
21 views

init boost::optional of non-copyable object

What should I do to initialize boost::optional< T > if underlying type T is non-default constructible, non-copyable/moveable, but one's instance still can exist? Is it forbidden for ...
0
votes
0answers
440 views

c++ error c2512 no default constructor - but it's there

So my problem is in this line of code: gMatchmakingClient = new MatchmakingClient(); Compiler failes with: error C2512: 'MatchmakingClient' : no appropriate default constructor available ...