------- Comment #7 from gdr at integrable-solutions dot net 2005-12-02 19:23
-------
Subject: Re: exception_defines.h #defines try/catch
"pinskia at gcc dot gnu dot org" <[EMAIL PROTECTED]> writes:
| Confirmed. This also causes problems in normal C++ code which does:
|
| #include <string>
|
| int f(void);
| int main(void)
| {
| try {
| f();
| }catch (a) {}
| }
|
| Without the include, you get an error but with the include, you don't which
is
| inconstaint behavior.
Indeed. But that is not changing a valid code into something else as
you claimed earlier.
The use of try/catch is part of the contract of -fno-exceptions. If a
determined programmer decides to abuse them beyond reasons, then I
believe he/she gets what he/she gets.
-- Gaby
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25191