[Bug c++/33336] Using predefined macros inside the template function errors out in compilation

2007-09-07 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-09-07 16:16 --- You are missing a semicolon (;) after the definition of template class RPGVec and SUCCES is not defined. After I fix those two issues the program compiles. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=6

[Bug c++/33336] Using predefined macros inside the template function errors out in compilation

2007-09-07 Thread raviprakashg at hotmail dot com
--- Comment #2 from raviprakashg at hotmail dot com 2007-09-07 18:40 --- Thank you, The problem was found to be MEM_COPY was in a different #ifdef loop in my application that caused the error. Thank you for your input. -- raviprakashg at hotmail dot com changed: What