|
|
|
|
|
by maccard
3286 days ago
|
|
In general if you're not using exceptions, you're not going to be using features that haven't actually been published in a formal standard (optional). This now means that you can't use any constructors, so how do you have Containers of foo? |
|
So you then have things like:
> so how do you have Containers of foo?std::vector<Foo*>
Not saying either of those are better than the alternative (I prefer using exceptions and RAII), just pointing out what I've seen in real world projects.