Skip to content
This repository has been archived by the owner on Dec 3, 2019. It is now read-only.

Commit

Permalink
Windows compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hoehna committed Sep 23, 2017
1 parent d5bc3d0 commit e8e91f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/moves/mixture/DPPAllocateAuxGibbsMove.h
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ void RevBayesCore::DPPAllocateAuxGibbsMove<valueType>::normalizeVector(std::vect
double sum = 0.0;
for (size_t i = 0; i < n; i++)
{
if ( v[i] < -300.0 || isnan(v[i]) )
if ( v[i] < -300.0 || RbMath::isNan(v[i]) )
{
v[i] = 0.0;
}
Expand Down

0 comments on commit e8e91f1

Please sign in to comment.