# HG changeset patch # User Rik # Date 1347552847 25200 # Node ID b5f28cc401b9fd9bf4f9e12b2fef1b5dafaf1947 # Parent b5d0a47c171ce8027bf2e76341a1c741215ceb28 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"'. diff --git a/liboctave/numeric/CmplxLU.cc b/liboctave/numeric/CmplxLU.cc --- 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 -#include +#include "base-lu.h" +#include "base-lu.cc" template class base_lu ; diff --git a/liboctave/numeric/dbleLU.cc b/liboctave/numeric/dbleLU.cc --- 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 -#include +#include "base-lu.h" +#include "base-lu.cc" template class base_lu ; diff --git a/liboctave/numeric/fCmplxLU.cc b/liboctave/numeric/fCmplxLU.cc --- a/liboctave/numeric/fCmplxLU.cc +++ b/liboctave/numeric/fCmplxLU.cc @@ -33,8 +33,8 @@ // Instantiate the base LU class for the types we need. -#include -#include +#include "base-lu.h" +#include "base-lu.cc" template class base_lu ; diff --git a/liboctave/numeric/floatLU.cc b/liboctave/numeric/floatLU.cc --- a/liboctave/numeric/floatLU.cc +++ b/liboctave/numeric/floatLU.cc @@ -33,8 +33,8 @@ // Instantiate the base LU class for the types we need. -#include -#include +#include "base-lu.h" +#include "base-lu.cc" template class base_lu ;