From c2e67bed7bb41f488cf72ee9cf9b3f8bbfd5b605 Mon Sep 17 00:00:00 2001 From: bangerth Date: Wed, 18 Oct 2006 00:32:10 +0000 Subject: [PATCH] Remove some more unnecessary using namespace declarations. git-svn-id: https://svn.dealii.org/trunk@14014 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/source/polynomials_bdm.cc | 6 ++---- deal.II/base/source/polynomials_raviart_thomas.cc | 4 +--- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/deal.II/base/source/polynomials_bdm.cc b/deal.II/base/source/polynomials_bdm.cc index 83574b543d..a9ed0a1e5d 100644 --- a/deal.II/base/source/polynomials_bdm.cc +++ b/deal.II/base/source/polynomials_bdm.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2004, 2005 by the deal.II authors +// Copyright (C) 2004, 2005, 2006 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -15,8 +15,6 @@ #include #include #include -using namespace std; -using namespace Polynomials; template @@ -30,7 +28,7 @@ PolynomialsBDM::PolynomialsBDM (const unsigned int k) p_grad_grads(polynomial_space.n()) { Assert (dim == 2, ExcNotImplemented()); - monomials[0] = Monomial (k+1); + monomials[0] = Polynomials::Monomial (k+1); } diff --git a/deal.II/base/source/polynomials_raviart_thomas.cc b/deal.II/base/source/polynomials_raviart_thomas.cc index ea7dd0f2d0..c9753fe13c 100644 --- a/deal.II/base/source/polynomials_raviart_thomas.cc +++ b/deal.II/base/source/polynomials_raviart_thomas.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2004, 2005 by the deal.II authors +// Copyright (C) 2004, 2005, 2006 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -15,8 +15,6 @@ #include #include #include -using namespace std; -using namespace Polynomials; template -- 2.39.5