From aa47f443ddd50221e1fe1bac626957cf79055fb7 Mon Sep 17 00:00:00 2001 From: Gavin Ridley Date: Fri, 20 Mar 2020 12:04:35 -0400 Subject: [PATCH] Update include/openmc/source.h Co-Authored-By: Paul Romano --- include/openmc/source.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/openmc/source.h b/include/openmc/source.h index aaa0f48e0f..78e4043b95 100644 --- a/include/openmc/source.h +++ b/include/openmc/source.h @@ -47,9 +47,9 @@ public: double strength() const { return strength_; } // Make observing pointers available - auto space() const { return space_.get(); } - auto angle() const { return angle_.get(); } - auto energy() const { return energy_.get(); } + SpatialDistribution* space() const { return space_.get(); } + UnitSphereDistribution* angle() const { return angle_.get(); } + Distribution* energy() const { return energy_.get(); } private: Particle::Type particle_ {Particle::Type::neutron}; //!< Type of particle emitted