Skip to content
Snippets Groups Projects
Commit 772c78e5 authored by graham's avatar graham
Browse files

BUG. FaceCellWave. If propagationTol is a *const* scalar then

setPropagationTol cannot be called.
parent 52fc076b
Branches
Tags
No related merge requests found
......@@ -40,7 +40,7 @@ template <class Type>
const Foam::scalar Foam::FaceCellWave<Type>::geomTol_ = 1e-6;
template <class Type>
const Foam::scalar Foam::FaceCellWave<Type>::propagationTol_ = 0.01;
Foam::scalar Foam::FaceCellWave<Type>::propagationTol_ = 0.01;
// Write to ostream
template <class Type>
......
......@@ -252,7 +252,7 @@ class FaceCellWave
// Private static data
static const scalar geomTol_;
static const scalar propagationTol_;
static scalar propagationTol_;
public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment