diff options
author | Stijn Buys <ingar@osirion.org> | 2008-08-23 10:31:45 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-08-23 10:31:45 +0000 |
commit | daf84bb6292eb5bf5434889a887535ec54c21b6b (patch) | |
tree | 1674d55039da9a100bf1d2a4a8596b793b6841a8 /src/math | |
parent | 7668b60981dadeced3b5c8ee27c16575d59844de (diff) |
fixes for gcc 4.3.1, added g_devel
Diffstat (limited to 'src/math')
-rw-r--r-- | src/math/matrix4f.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/math/matrix4f.cc b/src/math/matrix4f.cc index d73b12e..094bbd6 100644 --- a/src/math/matrix4f.cc +++ b/src/math/matrix4f.cc @@ -4,12 +4,12 @@ the terms of the GNU General Public License version 2 */ -// project headers -#include "math/matrix4f.h" +#include <string.h> -// C++ headers #include <cmath> +#include "math/matrix4f.h" + namespace math { |