This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/16897] a rethrow outside of a catch isn't flagged


------- Additional Comments From brendan at zen dot org  2004-08-06 15:01 -------
Subject: Re:  a rethrow outside of a catch isn't flagged

On Friday 06 August 2004 15:22, bangerth at dealii dot org wrote:
> Joerg's explanation is correct. 15.1/6 and /7 don't specify that
> "throw;" has to be lexically inside a catch block. In particular,
> 15.1/8 says that if there is no exception presently being handled,
> then the program aborts by calling terminate().

Agreed.  However, I think by far the majority of people using rethrow aren't 
intending to do it outside of a handler.  Thus I believe a warning would be 
helpful to people accidentally doing

	void foo()
	{
	...
	  try {
		// ... something ...
	    throw;
	  }
	  catch (const A&)
	  {
		// do the work here
	  }
	...
	}

or somesuch.   Right now the misplacement of the rethrow goes unmentioned 
until you end up aborting at runtime thru terminate().



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16897


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]