Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix potential use of dangling temporary.
In ``` const TGeoHMatrix& m = par.nominal().worldTransformation(); ``` nominal() returns a temporary Alignment object by value, and worldTransformation() returns a reference within that Alignment object. So we shoud make a copy.
- Loading branch information