ENH: support writable reference for tmp (#1775)
- improves flexibility. Can tag a tmp as allowing non-const access to the reference and skip additional const_cast in following code. For example, tmp<volScalarField> tfld(nullptr); auto* ptr = getObjectPtr<volScalarField>("field"); if (ptr) { tfld.ref(*ptr); } else { tfld.reset(volScalarField::New(...)); } auto& fld = tfld.ref(); ENH: renamed tmpNrc to refPtr - the name 'refPtr' (reference|pointer) should be easier to remember than tmpNrc (tmp, but non-ref-counted). - provide tmpNrc typedef and header for code compatibility NOTE - in some places refPtr and tmp can be used instead of a std::reference_wrapper for handling external references. Unlike std::reference_wrapper, it can be default constructed (holding nothing), whereas reference_wrapper may need a dummy reference. However, the lifetime extension of references _may_ be better with reference_wrapper.
Showing
- src/OpenFOAM/fields/Fields/Field/PrecisionAdaptor/PrecisionAdaptor.H 33 additions, 40 deletions...M/fields/Fields/Field/PrecisionAdaptor/PrecisionAdaptor.H
- src/OpenFOAM/global/fileOperations/fileOperation/fileOperation.C 6 additions, 5 deletions...nFOAM/global/fileOperations/fileOperation/fileOperation.C
- src/OpenFOAM/global/fileOperations/fileOperation/fileOperation.H 8 additions, 7 deletions...nFOAM/global/fileOperations/fileOperation/fileOperation.H
- src/OpenFOAM/global/fileOperations/masterUncollatedFileOperation/masterUncollatedFileOperation.C 3 additions, 3 deletions...erUncollatedFileOperation/masterUncollatedFileOperation.C
- src/OpenFOAM/global/fileOperations/uncollatedFileOperation/uncollatedFileOperation.C 2 additions, 2 deletions...rations/uncollatedFileOperation/uncollatedFileOperation.C
- src/OpenFOAM/global/fileOperations/uncollatedFileOperation/uncollatedFileOperation.H 4 additions, 3 deletions...rations/uncollatedFileOperation/uncollatedFileOperation.H
- src/OpenFOAM/memory/refPtr/refPtr.H 41 additions, 36 deletionssrc/OpenFOAM/memory/refPtr/refPtr.H
- src/OpenFOAM/memory/refPtr/refPtrI.H 44 additions, 42 deletionssrc/OpenFOAM/memory/refPtr/refPtrI.H
- src/OpenFOAM/memory/tmp/tmp.H 15 additions, 9 deletionssrc/OpenFOAM/memory/tmp/tmp.H
- src/OpenFOAM/memory/tmp/tmpI.H 11 additions, 9 deletionssrc/OpenFOAM/memory/tmp/tmpI.H
- src/OpenFOAM/memory/tmpNrc/tmpNrc.H 33 additions, 0 deletionssrc/OpenFOAM/memory/tmpNrc/tmpNrc.H
- src/OpenFOAM/memory/tmpNrc/tmpNrcI.H 1 addition, 0 deletionssrc/OpenFOAM/memory/tmpNrc/tmpNrcI.H
- src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C 2 additions, 2 deletions...ools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C
- src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.H 3 additions, 3 deletions...ools/AMIInterpolation/AMIInterpolation/AMIInterpolation.H