Frictional Games Forum (read-only)

Full Version: Compiling errors
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I have tryed to compile penumbra source, but I still have some errors: "insert is not a member of std" or "begin is not a member of std". I have included iterator, but it still doesn't work. The file is triggerHandler. Could you help me? Thanks.
Unsure if anyone around are able to answer your question aside from the devs. My only suggestion would be to make sure you're using appropriate versions of software. Penumbra is rather old, so perhaps you need to use a compiler from 2007?
Seems like you need an older complier, VS2003 in fact.
(09-15-2018, 05:49 PM)Thecapogames Wrote: [ -> ]Hello, I have tryed to compile penumbra source, but I still have some errors: "insert is not a member of std" or "begin is not a member of std". I have included iterator, but it still doesn't work. The file is triggerHandler. Could you help me? Thanks.

To solve that particular problem you need to do this

at the top of triggerHandler.h put:

#include <functional>

You also need to do that in a .cpp file but i don't remember which one right now.