Frictional Games Forum (read-only)
Compiling errors - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Open Source Collaboration (https://www.frictionalgames.com/forum/forum-27.html)
+--- Forum: Overture (https://www.frictionalgames.com/forum/forum-29.html)
+--- Thread: Compiling errors (/thread-54598.html)



Compiling errors - Thecapogames - 09-15-2018

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.


RE: Compiling errors - Mudbill - 09-16-2018

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?


RE: Compiling errors - kirakatve - 09-24-2018

Seems like you need an older complier, VS2003 in fact.


RE: Compiling errors - Argoon - 12-31-2018

(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.