We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hello! Sorry for my english.
I need classes of STL: only list and auto_ptr. But when I attempt to include STL header, code size increases on 20kb (based optimization). I think so, Keil connects iostream classes, which I do not need.
I think so, Keil connects iostream classes,
And on what basis, other than sheer code size, do you "think so"?
Keil requires implementation of IO functions:
int fputc(int ch, FILE *f) int fgetc (FILE *fp) int fclose(FILE* f) int ferror(FILE *f) int fseek (FILE *fp, long nPos, int nMode) int fflush (FILE *pStream)
but i use only std::list.
#include <list> int main() { std::list<int> list; list.push_back(0); }