From 5e614afe0f7c2a197e0e19e3090c38cd9b48a0de Mon Sep 17 00:00:00 2001 From: Gavin Ridley Date: Fri, 20 Mar 2020 12:04:42 -0400 Subject: [PATCH] Update include/openmc/distribution_spatial.h Co-Authored-By: Paul Romano --- include/openmc/distribution_spatial.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/openmc/distribution_spatial.h b/include/openmc/distribution_spatial.h index 83c0e7fd69..d66923c4e0 100644 --- a/include/openmc/distribution_spatial.h +++ b/include/openmc/distribution_spatial.h @@ -81,10 +81,10 @@ public: //! \return Sampled position Position sample(uint64_t* seed) const; - auto r() const { return r_.get(); } - auto theta() const { return theta_.get(); } - auto phi() const { return phi_.get(); } - auto origin () const { return origin_; } + Distribution* r() const { return r_.get(); } + Distribution* theta() const { return theta_.get(); } + Distribution* phi() const { return phi_.get(); } + Position origin () const { return origin_; } private: UPtrDist r_; //!< Distribution of r coordinates UPtrDist theta_; //!< Distribution of theta coordinates