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++/15057] Compiling of conditional value throw constructs cause a segmentation violation


------- Additional Comments From bangerth at dealii dot org  2004-04-21 21:02 -------
It's also a good question whether we get 
  throw (c) ? a : b; 
right in the sense that it means 
  throw ((c) ? a : b) 
and not 
  (throw (c)) ? a : b 
 
But just as Andrew said: no preprocessed sources, no definite answer. 
 
W. 

-- 


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


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