From 3f7afb7b4f0c32176eb153632cc1ae725ef7a33b Mon Sep 17 00:00:00 2001 From: davidjohnlong <59730407+davidjohnlong@users.noreply.github.com> Date: Thu, 12 Mar 2020 08:14:31 +0000 Subject: [PATCH] Adjust naming of custom source function and library for clarity Co-Authored-By: Paul Romano --- src/source.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/source.cpp b/src/source.cpp index e659f31f3..a5bc91cb0 100644 --- a/src/source.cpp +++ b/src/source.cpp @@ -39,8 +39,8 @@ namespace openmc { namespace model { typedef Particle::Bank (*sample_t)(uint64_t &seed); -sample_t sample_source; -void* source_library; +sample_t custom_source_function; +void* custom_source_library; std::vector external_sources;