Update of /cvsroot/super-tux/supertux/lib/math
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13651/lib/math
Modified Files:
vector.h
Log Message:
Fixed #include introduced by the last commit.
In the library all includes have to be in "#include ../libsubdir/foo.h" style, so that the relations between the includes work correctly inside your /usr/(local)/include/ directory as well.
Index: vector.h
===================================================================
RCS file: /cvsroot/super-tux/supertux/lib/math/vector.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- vector.h 5 Aug 2004 10:08:43 -0000 1.4
+++ vector.h 5 Aug 2004 20:11:30 -0000 1.5
@@ -20,7 +20,7 @@
#ifndef SUPERTUX_VECTOR_H
#define SUPERTUX_VECTOR_H
-#include "special/base.h"
+#include "../special/base.h"
namespace SuperTux
{
|