K
k.w.
I saw something like this:
class Fred {
public:
void g() throw();
};
What is this throw() for? I did not even know that you could put it there.
Could anyone explain this to a C++ novice?
class Fred {
public:
void g() throw();
};
What is this throw() for? I did not even know that you could put it there.
Could anyone explain this to a C++ novice?