changeset 6513:e0a1dff7677c

[project @ 2007-04-10 21:13:22 by jwe]
author jwe
date Tue, 10 Apr 2007 21:13:22 +0000
parents 747ba2dc157e
children 5ef6f71974db
files liboctave/ChangeLog liboctave/SparseCmplxQR.cc
diffstat 2 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/ChangeLog	Tue Apr 10 20:38:57 2007 +0000
+++ b/liboctave/ChangeLog	Tue Apr 10 21:13:22 2007 +0000
@@ -1,3 +1,10 @@
+2007-04-10  John W. Eaton  <jwe@octave.org>
+
+	* SparseCmplxQR.cc
+	(SparseComplexQR::SparseComplexQR_rep::SparseComplexQR_rep):
+	Move GCC_ATTR_UNUSED before the parameter decl.
+	From Luis Ortiz  <lortiz@interactivesupercomputing.com>.
+
 2007-04-06  John W. Eaton  <jwe@octave.org>
 
 	* MArray-defs.h (MARRAY_NORM_BODY): New macro.
--- a/liboctave/SparseCmplxQR.cc	Tue Apr 10 20:38:57 2007 +0000
+++ b/liboctave/SparseCmplxQR.cc	Tue Apr 10 21:13:22 2007 +0000
@@ -37,8 +37,7 @@
 #define OCTAVE_C99_ZERO (0. + 0.iF);
 
 SparseComplexQR::SparseComplexQR_rep::SparseComplexQR_rep 
-(const SparseComplexMatrix& a GCC_ATTR_UNUSED,
- int order GCC_ATTR_UNUSED)
+(GCC_ATTR_UNUSED const SparseComplexMatrix& a, GCC_ATTR_UNUSED int order)
 {
 #ifdef HAVE_CXSPARSE
   CXSPARSE_ZNAME () A;