Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempting to fix macos compiler errors
Browse files Browse the repository at this point in the history
PhilipFackler committed Nov 18, 2024
1 parent 0e8e720 commit 37643cb
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions xolotl/core/include/xolotl/core/flux/FluxHandler.h
Original file line number Diff line number Diff line change
@@ -162,7 +162,7 @@ class FluxHandler : public IFluxHandler
/**
* \see IFluxHandler.h
*/
virtual void
void
computeIncidentFlux(double currentTime, Kokkos::View<const double*>,
Kokkos::View<double*> updatedConcOffset, int xi,
int surfacePos) override;
@@ -230,17 +230,17 @@ class FluxHandler : public IFluxHandler
/**
* \see IFluxHandler.h
*/
virtual void
setFissionYield(double yield)
void
setFissionYield(double yield) override
{
return;
}

/**
* \see IFluxHandler.h
*/
virtual std::vector<std::pair<IdType, double>>
getImplantedFlux(std::vector<IdType> map)
std::vector<std::pair<IdType, double>>
getImplantedFlux(std::vector<IdType> map) override
{
return std::vector<std::pair<IdType, double>>();
}
Original file line number Diff line number Diff line change
@@ -315,7 +315,7 @@ NEReactionNetwork::readReactions(double temperature, const std::string filename)
this->copyClusterDataView();
}

void
inline void
NEReactionNetwork::initializeExtraClusterData(const options::IOptions& options)
{
if (!this->_enableReadRates) {

0 comments on commit 37643cb

Please sign in to comment.