Skip to content

Commit

Permalink
Merge branch 'master' of github.com:libMesh/libmesh
Browse files Browse the repository at this point in the history
  • Loading branch information
roystgnr committed Jan 31, 2013
2 parents 42baa3a + 032bf34 commit 7949911
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions include/quadrature/quadrature.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class QBase : public ReferenceCountedObject<QBase>
* Initializes the data structures to contain a quadrature rule
* for an object of type \p type.
*/
void init (const ElemType _type=INVALID_ELEM,
void init (const ElemType type=INVALID_ELEM,
unsigned int p_level=0);

/**
Expand Down Expand Up @@ -222,7 +222,7 @@ class QBase : public ReferenceCountedObject<QBase>
* weights vectors with the appropriate values. Generally this
* is just one point with weight 1.
*/
virtual void init_0D (const ElemType _type=INVALID_ELEM,
virtual void init_0D (const ElemType type=INVALID_ELEM,
unsigned int p_level=0);

/**
Expand All @@ -232,7 +232,7 @@ class QBase : public ReferenceCountedObject<QBase>
* It is assumed that derived quadrature rules will at least
* define the init_1D function, therefore it is pure virtual.
*/
virtual void init_1D (const ElemType _type=INVALID_ELEM,
virtual void init_1D (const ElemType type=INVALID_ELEM,
unsigned int p_level=0) = 0;

/**
Expand Down
6 changes: 3 additions & 3 deletions src/quadrature/quadrature_clough_2D.C
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace libMesh
{


void QClough::init_2D(const ElemType _type,
void QClough::init_2D(const ElemType type_in,
unsigned int p)
{
#if LIBMESH_DIM > 1
Expand All @@ -34,7 +34,7 @@ void QClough::init_2D(const ElemType _type,

//-----------------------------------------------------------------------
// 2D quadrature rules
switch (_type)
switch (type_in)
{

//---------------------------------------------
Expand Down Expand Up @@ -73,7 +73,7 @@ void QClough::init_2D(const ElemType _type,
// Unsupported type
default:
{
libMesh::err << "Element type not supported!:" << _type << std::endl;
libMesh::err << "Element type not supported!:" << type_in << std::endl;
libmesh_error();
}
}
Expand Down

0 comments on commit 7949911

Please sign in to comment.