mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
Correct typo in retrieving stored pointer from CartesianIndependent distribution unique pointers.Refs #1680
This commit is contained in:
parent
8ed15a83e6
commit
c1d4119b78
1 changed files with 2 additions and 2 deletions
|
|
@ -35,8 +35,8 @@ public:
|
|||
|
||||
// Observer pointers
|
||||
Distribution* x() const { return x_.get(); }
|
||||
Distribution* y() const { return x_.get(); }
|
||||
Distribution* z() const { return x_.get(); }
|
||||
Distribution* y() const { return y_.get(); }
|
||||
Distribution* z() const { return z_.get(); }
|
||||
private:
|
||||
UPtrDist x_; //!< Distribution of x coordinates
|
||||
UPtrDist y_; //!< Distribution of y coordinates
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue