From ceb244eca5da7ea2d58e97fe633a7338669b9de8 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 28 Aug 1998 09:28:07 +0000 Subject: [PATCH] Remove one line of unnecessary output. git-svn-id: https://svn.dealii.org/trunk@533 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/source/Makefile | 2 -- deal.II/lac/source/dfmatrix.cc | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/deal.II/lac/source/Makefile b/deal.II/lac/source/Makefile index a412869586..74be0be348 100644 --- a/deal.II/lac/source/Makefile +++ b/deal.II/lac/source/Makefile @@ -26,11 +26,9 @@ h-files = $(wildcard ../include/*/*.h) %.go : %.cc Makefile @echo ============================ Compiling with debugging information: $< - @echo $(CXX) ... -c $< -o $@ @$(CXX) $(CXXFLAGS.g) -c $< -o $@ %.o : %.cc Makefile @echo ============================ Compiling with optimization: $< - @echo $(CXX) ... -c $< -o $@ @$(CXX) $(CXXFLAGS) -c $< -o $@ diff --git a/deal.II/lac/source/dfmatrix.cc b/deal.II/lac/source/dfmatrix.cc index f90ee9eec4..35591495f3 100644 --- a/deal.II/lac/source/dfmatrix.cc +++ b/deal.II/lac/source/dfmatrix.cc @@ -395,7 +395,7 @@ void dFMatrix::forward (dVector& dst, const dVector& src) const Assert(src.size() == n(), ExcDimensionMismatch(src.size(), n())); unsigned int i,j; - unsigned int nu = MIN(m(),n()); + unsigned int nu = (m()=0; --i) { -- 2.39.5