"... another off-topic ..." ?? I think this is my second or third posting,
but, hey! sorry for the posting and thanks for the welcoming comments.
Yes, it is impasse. That's one of the problem of being multilingual,
sometimes two or three languages get mixed and this kind of mistakes occur,
most
On 28/05/15 00:15, Hotmail (ArbolOne) wrote:
> This creates another problem, what if the exception is std::mem_alloc, I
> would ran out of memory, thus I wouldn't be able to create another object.
You could use placement new and a custom memory pool of exception
objects.
Andrew.
--
On 28 May 2015 at 00:15, Hotmail (ArbolOne) wrote:
> I know, I know, this is not a C++ question, but, as I said, I am in a
> in-path, I don't know what to do in this case.
I have no idea what an in-path is (impasse?) but you've sent another
off-topic post that is not about GCC.
For general progra
ng List
主题:Re: [Mingw-w64-public] I am in a in-path
Do you mean "I am at an impasse"?
On 28 May 2015 00:29, "Hotmail (ArbolOne)" wrote:
> I am in a in-path. I wrote a class that handles exceptions,
> namespace abc{
> class Exception{...}; // This is my very la
Do you mean "I am at an impasse"?
On 28 May 2015 00:29, "Hotmail (ArbolOne)" wrote:
> I am in a in-path. I wrote a class that handles exceptions,
> namespace abc{
> class Exception{...}; // This is my very large Exception class
> }
>
> The way I'd like to use this class is by creating a smart
I am in a in-path. I wrote a class that handles exceptions,
namespace abc{
class Exception{...}; // This is my very large Exception class
}
The way I'd like to use this class is by creating a smart pointer to it in
each newly created class, i.e.
namespace abc{
class m_class001{