# HG changeset patch # User John W. Eaton # Date 1218135218 14400 # Node ID 8487847eb092b33a721b018fa5cb5fa57ecd8bd7 # Parent 260294a5520f1c3107b21e93b3fa86cbbc8f9eae fCmplxLU.h, CmplxLU.h: fix typo in definition of multiple-inclusion guard macro diff --git a/liboctave/ChangeLog b/liboctave/ChangeLog --- a/liboctave/ChangeLog +++ b/liboctave/ChangeLog @@ -1,3 +1,8 @@ +2008-08-07 John W. Eaton + + * fCmplxLU.h, CmplxLU.h: Fix typo in definition of + multiple-inclusion guard macro. + 2008-08-05 John W. Eaton * file-ops.h, file-ops.cc (file_ops::static_members): diff --git a/liboctave/CmplxLU.h b/liboctave/CmplxLU.h --- a/liboctave/CmplxLU.h +++ b/liboctave/CmplxLU.h @@ -22,7 +22,7 @@ */ #if !defined (octave_ComplexLU_h) -#define octave_Complex_LU_h 1 +#define octave_ComplexLU_h 1 #include "base-lu.h" #include "dMatrix.h" diff --git a/liboctave/fCmplxLU.h b/liboctave/fCmplxLU.h --- a/liboctave/fCmplxLU.h +++ b/liboctave/fCmplxLU.h @@ -22,7 +22,7 @@ */ #if !defined (octave_FloatComplexLU_h) -#define octave_FloatComplex_LU_h 1 +#define octave_FloatComplexLU_h 1 #include "base-lu.h" #include "dMatrix.h"