Click here to Skip to main content
15,897,291 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Doubt in using Math library Pin
Maxwell Chen7-Mar-08 4:25
Maxwell Chen7-Mar-08 4:25 
GeneralRe: Doubt in using Math library Pin
CPallini7-Mar-08 4:21
mveCPallini7-Mar-08 4:21 
GeneralRe: Doubt in using Math library Pin
Maxwell Chen7-Mar-08 4:25
Maxwell Chen7-Mar-08 4:25 
GeneralWindow is launched in the Background when the Alt key is down! Pin
hatemtaleb6-Mar-08 21:39
hatemtaleb6-Mar-08 21:39 
Generalanti-standard code can compile -- about template class Pin
George_George6-Mar-08 21:37
George_George6-Mar-08 21:37 
GeneralRe: anti-standard code can compile -- about template class Pin
BadKarma6-Mar-08 21:56
BadKarma6-Mar-08 21:56 
GeneralRe: anti-standard code can compile -- about template class Pin
George_George6-Mar-08 22:30
George_George6-Mar-08 22:30 
GeneralRe: anti-standard code can compile -- about template class Pin
Maxwell Chen6-Mar-08 22:59
Maxwell Chen6-Mar-08 22:59 
I think current versions of VC++ treat this issue in the manner treating non-template name hiding stuff. Such as:
int a = 3;
for(int i = 0, a = 0; i < 2; i++) {
  printf("a = %d \n", a);
}
printf("a = %d \n", a);

Result:
a = 0 // The inner a
a = 3 // The outer a


  Maxwell Chen

GeneralRe: anti-standard code can compile -- about template class Pin
George_George6-Mar-08 23:22
George_George6-Mar-08 23:22 
GeneralRe: anti-standard code can compile -- about template class Pin
Maxwell Chen6-Mar-08 23:31
Maxwell Chen6-Mar-08 23:31 
GeneralRe: anti-standard code can compile -- about template class Pin
George_George7-Mar-08 0:22
George_George7-Mar-08 0:22 
GeneralRe: anti-standard code can compile -- about template class Pin
BadKarma6-Mar-08 22:59
BadKarma6-Mar-08 22:59 
GeneralRe: anti-standard code can compile -- about template class Pin
Maxwell Chen6-Mar-08 23:06
Maxwell Chen6-Mar-08 23:06 
GeneralRe: anti-standard code can compile -- about template class Pin
George_George6-Mar-08 23:24
George_George6-Mar-08 23:24 
GeneralRe: anti-standard code can compile -- about template class Pin
Maxwell Chen6-Mar-08 23:35
Maxwell Chen6-Mar-08 23:35 
JokeRe: anti-standard code can compile -- about template class Pin
Maxwell Chen6-Mar-08 23:41
Maxwell Chen6-Mar-08 23:41 
GeneralRe: anti-standard code can compile -- about template class Pin
George_George7-Mar-08 0:21
George_George7-Mar-08 0:21 
GeneralRe: anti-standard code can compile -- about template class Pin
Maxwell Chen7-Mar-08 3:09
Maxwell Chen7-Mar-08 3:09 
GeneralRe: anti-standard code can compile -- about template class Pin
George_George7-Mar-08 3:18
George_George7-Mar-08 3:18 
GeneralRe: anti-standard code can compile -- about template class Pin
Maxwell Chen7-Mar-08 3:23
Maxwell Chen7-Mar-08 3:23 
GeneralRe: anti-standard code can compile -- about template class Pin
George_George7-Mar-08 3:37
George_George7-Mar-08 3:37 
GeneralRe: anti-standard code can compile -- about template class Pin
Maxwell Chen7-Mar-08 3:56
Maxwell Chen7-Mar-08 3:56 
GeneralRe: anti-standard code can compile -- about template class Pin
George_George7-Mar-08 20:21
George_George7-Mar-08 20:21 
GeneralRe: anti-standard code can compile -- about template class Pin
George_George7-Mar-08 0:20
George_George7-Mar-08 0:20 
GeneralRe: anti-standard code can compile -- about template class Pin
George_George7-Mar-08 0:19
George_George7-Mar-08 0:19 

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.