I have a program that reads in a long list of words from a text file with command line redirection. No file streams.
It takes the data in using getline(cin, string)
and reads it into a vector. My program then processes the data. It also uses dynamic memory (not sure if this fact is relevant).
Why am I getting this error:
Warning: Your program used more system time (0.001 sec) than user time (0.000 sec).
This may be due to excessive I/O, overly frequent time measurement
(via getrusage for example), or unnecessary system calls.