Hey guys,
I've compiled my code on two different machines, which I thought had identical setups. However, one compiles without issues, and the other gives the following error.
LogEventReader.cpp(320) : error C3861: 'for_each': identifier not found, even with argument-dependent lookup
The relevant code:
#include <algorithm>
...
for_each(messages.begin(), messages.end(), processXMLMessage);
Any ideas what the issue could be? TIA.