Click here to Skip to main content
15,908,013 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: SMPT mail problem Pin
murali_utr12-Jan-04 17:38
murali_utr12-Jan-04 17:38 
Generalabout cov and eig Pin
Vincent Sim12-Jan-04 10:36
Vincent Sim12-Jan-04 10:36 
GeneralDrag and drop CtreeView Pin
act_x12-Jan-04 10:25
act_x12-Jan-04 10:25 
GeneralRe: Drag and drop CtreeView Pin
KaЯl12-Jan-04 23:54
KaЯl12-Jan-04 23:54 
GeneralCRichedit control scrolling Pin
Anonymous12-Jan-04 10:21
Anonymous12-Jan-04 10:21 
GeneralDarkside mini SQL errors in http extension dll Pin
Kuniva12-Jan-04 10:21
Kuniva12-Jan-04 10:21 
GeneralModifying exceptions inside a catch block Pin
Marcello12-Jan-04 10:09
Marcello12-Jan-04 10:09 
GeneralRe: Modifying exceptions inside a catch block Pin
Joaquín M López Muñoz12-Jan-04 11:18
Joaquín M López Muñoz12-Jan-04 11:18 
The paragraph states precisely what one would expect, i.e that non-const references to exception objects allow for modyfing and the changes will go up the stack if the object is rethrown. That is, no surprises here.
If you read it carefully, the first part says a non-constant object, as in
catch(BasicException e)
and the second refers to non-constant references as in
catch(BasicException& e)
In the first case, what the catch handler gets is a copy of the thrown object, exactly as when you call a regular function with signature foo(BasicExceotion e). In the second case, you get a reference to the original object and modifying can be done freely.

Joaquín M López Muñoz
Telefónica, Investigación y Desarrollo
GeneralRe: Modifying exceptions inside a catch block Pin
Marcello12-Jan-04 17:05
Marcello12-Jan-04 17:05 
Generalunresolved external symbol Pin
TolTol12-Jan-04 9:32
TolTol12-Jan-04 9:32 
GeneralRe: unresolved external symbol Pin
Jörgen Sigvardsson12-Jan-04 9:53
Jörgen Sigvardsson12-Jan-04 9:53 
GeneralRe: unresolved external symbol Pin
TolTol12-Jan-04 11:50
TolTol12-Jan-04 11:50 
QuestionIs there a way to detect a debug build? Pin
toddbrooks12-Jan-04 9:04
toddbrooks12-Jan-04 9:04 
AnswerRe: Is there a way to detect a debug build? Pin
Neville Franks12-Jan-04 9:35
Neville Franks12-Jan-04 9:35 
AnswerRe: Is there a way to detect a debug build? Pin
LizardWiz12-Jan-04 11:25
LizardWiz12-Jan-04 11:25 
GeneralRe: Is there a way to detect a debug build? Pin
toddbrooks12-Jan-04 11:31
toddbrooks12-Jan-04 11:31 
GeneralProblem Deleting Pointer Pin
DruOfGov12-Jan-04 8:18
DruOfGov12-Jan-04 8:18 
GeneralRe: Problem Deleting Pointer Pin
Joe Woodbury12-Jan-04 8:33
professionalJoe Woodbury12-Jan-04 8:33 
GeneralRe: Problem Deleting Pointer Pin
DruOfGov12-Jan-04 8:51
DruOfGov12-Jan-04 8:51 
GeneralRe: Problem Deleting Pointer Pin
Joe Woodbury12-Jan-04 10:02
professionalJoe Woodbury12-Jan-04 10:02 
GeneralRe: Problem Deleting Pointer Pin
DruOfGov12-Jan-04 10:14
DruOfGov12-Jan-04 10:14 
GeneralRe: Problem Deleting Pointer Pin
Joe Woodbury12-Jan-04 10:34
professionalJoe Woodbury12-Jan-04 10:34 
GeneralRe: Problem Deleting Pointer Pin
DruOfGov12-Jan-04 10:38
DruOfGov12-Jan-04 10:38 
GeneralRe: Problem Deleting Pointer Pin
DruOfGov12-Jan-04 10:41
DruOfGov12-Jan-04 10:41 
GeneralRe: Problem Deleting Pointer Pin
Joe Woodbury12-Jan-04 12:01
professionalJoe Woodbury12-Jan-04 12:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.