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	Thu Sep 13 12:06:28 2012 -0400
+++ b/liboctave/numeric/CmplxLU.cc	Thu Sep 13 09:14:07 2012 -0700
@@ -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	Thu Sep 13 12:06:28 2012 -0400
+++ b/liboctave/numeric/dbleLU.cc	Thu Sep 13 09:14:07 2012 -0700
@@ -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>;
 
--- a/liboctave/numeric/fCmplxLU.cc	Thu Sep 13 12:06:28 2012 -0400
+++ b/liboctave/numeric/fCmplxLU.cc	Thu Sep 13 09:14:07 2012 -0700
@@ -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 <FloatComplexMatrix>;
 
--- a/liboctave/numeric/floatLU.cc	Thu Sep 13 12:06:28 2012 -0400
+++ b/liboctave/numeric/floatLU.cc	Thu Sep 13 09:14:07 2012 -0700
@@ -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 <FloatMatrix>;