Forums
refactor build fix - Printable Version

+- Forums (https://www.vdrift.net/Forum)
+-- Forum: Project (https://www.vdrift.net/Forum/forumdisplay.php?fid=4)
+--- Forum: Development (https://www.vdrift.net/Forum/forumdisplay.php?fid=9)
+--- Thread: refactor build fix (/showthread.php?tid=979)



refactor build fix - ams76 - 08-09-2008

In order to get the refactor branch to compile on Fedora 9 (gcc 4.3), I had to make the change below, otherwise it can't find std:Confusedort.

Code:
Index: src/game.cpp
===================================================================
--- src/game.cpp    (revision 2100)
+++ src/game.cpp    (working copy)
@@ -27,6 +27,8 @@
#include <sstream>
using std::stringstream;

+#include <algorithm>
+
///start the game with the given arguments
void GAME::Start(list <string> & args)
{



- joevenzon - 08-09-2008

Thanks! Fixed in R2101.