From 38aaccdb382fee2063bf9f01e150e0a4f12d688b Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 30 Oct 2009 05:41:43 +0000 Subject: [PATCH] Do not use "using namespace dealii;" at the top of the file since this affects everyone who includes this header file. That's not the intent... git-svn-id: https://svn.dealii.org/trunk@20009 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/lapack_templates.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/deal.II/lac/include/lac/lapack_templates.h b/deal.II/lac/include/lac/lapack_templates.h index a9646ab069..ea67a684c4 100644 --- a/deal.II/lac/include/lac/lapack_templates.h +++ b/deal.II/lac/include/lac/lapack_templates.h @@ -17,10 +17,9 @@ #ifndef __LAPACK_TEMPLATES_H #define __LAPACK_TEMPLATES_H +#include #include -using namespace dealii; - extern "C" { // vector update of the form y += alpha*x with a scalar, x,y vectors @@ -171,6 +170,7 @@ void sstev_ (const char* jobz, const int* n, } +DEAL_II_NAMESPACE_OPEN #ifdef HAVE_DAXPY_ inline void @@ -621,5 +621,6 @@ stev (const char*, const int*, float*, float*, float*, const int*, float*, int*) } #endif +DEAL_II_NAMESPACE_CLOSE #endif -- 2.39.5