Mercurial > hg > octave-nkf
changeset 15374:b5f28cc401b9
Use double quotes, not angle brackets, for '#include "base-lu.cc"'.
* CmplxLU.cc, dbleLU.cc, fCmplxLU.cc, floatLU.cc:
Use double quotes, not angle brackets, for '#include "base-lu.cc"'.
author | Rik <rik@octave.org> |
---|---|
date | Thu, 13 Sep 2012 09:14:07 -0700 |
parents | b5d0a47c171c |
children | e4ecc18a24cc 181319fb0c8b |
files | liboctave/numeric/CmplxLU.cc liboctave/numeric/dbleLU.cc liboctave/numeric/fCmplxLU.cc liboctave/numeric/floatLU.cc |
diffstat | 4 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/liboctave/numeric/CmplxLU.cc +++ b/liboctave/numeric/CmplxLU.cc @@ -33,8 +33,8 @@ // Instantiate the base LU class for the types we need. -#include <base-lu.h> -#include <base-lu.cc> +#include "base-lu.h" +#include "base-lu.cc" template class base_lu <ComplexMatrix>;
--- a/liboctave/numeric/dbleLU.cc +++ b/liboctave/numeric/dbleLU.cc @@ -33,8 +33,8 @@ // Instantiate the base LU class for the types we need. -#include <base-lu.h> -#include <base-lu.cc> +#include "base-lu.h" +#include "base-lu.cc" template class base_lu <Matrix>;