# HG changeset patch # User Jaroslav Hajek # Date 1213947295 -7200 # Node ID 72c332d2db3c31950571999179026003bf16bc6e # Parent eb9ccb44ea41b08fc08987b10b76c7bd05c94680 add missing include in MatrixType.h diff -r eb9ccb44ea41 -r 72c332d2db3c liboctave/ChangeLog --- a/liboctave/ChangeLog Wed Jun 18 21:00:06 2008 +0200 +++ b/liboctave/ChangeLog Fri Jun 20 09:34:55 2008 +0200 @@ -1,3 +1,7 @@ +2008-06-20 Jaroslav Hajek + + * MatrixType.h: Add missing include statement. + 2008-06-13 Michael Goffioul * lo-mappers.cc (arg): Remove ambiguity about atan2(float,float) usage. diff -r eb9ccb44ea41 -r 72c332d2db3c liboctave/MatrixType.h --- a/liboctave/MatrixType.h Wed Jun 18 21:00:06 2008 +0200 +++ b/liboctave/MatrixType.h Fri Jun 20 09:34:55 2008 +0200 @@ -24,6 +24,8 @@ #if !defined (octave_MatrixType_h) #define octave_MatrixType_h +#include "oct-types.h" + class Matrix; class ComplexMatrix; class FloatMatrix;