Curses.h and STL(I Think) not working

basically, in a similar problem to this one.
http://www.cplusplus.com/forum/general/1746/
I am having the vector class and curses not work....um...what to do?
(I do not quite understand what is needed to be done.....)
Last edited on
That's one of the reasons why macros can be bad. You can use #undef statements to #undef the macros like erase and move that conflict with vector function names.

1
2
3
#include "curses.h"
#undef move
/* etc... */
Topic archived. No new replies allowed.