BUG: Use dictionary copy instead of reference

This commit is contained in:
andy 2011-02-08 15:45:43 +00:00
parent b8c2cbaaec
commit c9b8b5f05e
2 changed files with 2 additions and 2 deletions

View File

@ -288,7 +288,7 @@ protected:
typename ParcelType::constantProperties constProps_;
//- Sub-models dictionary
const dictionary& subModelProperties_;
const dictionary subModelProperties_;
//- Random number generator - used by some injection routines
cachedRandom rndGen_;

View File

@ -70,7 +70,7 @@ class particleForces
const fvMesh& mesh_;
//- The particleForces dictionary
const dictionary& dict_;
const dictionary dict_;
//- Gravity
const vector g_;