CigiMessage.h contains the line:
using namespace std;
near the top.
Since this happens in a header all application headers/sources that (indirectly) include CigiMessage.h end up having the standard library namespace pulled into the global namespace.
Patch against r814 attached, tested on linux x86_64 (Fedora 16).
Patch to remove "using namespace std;"