Skip to content

Commit

Permalink
Replace git status coercion.
Browse files Browse the repository at this point in the history
  • Loading branch information
connormanning committed Oct 3, 2019
1 parent e4f280d commit d6ca66b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion io/EptReader.cpp
Expand Up @@ -949,7 +949,8 @@ EptReader::NodeBufferIt EptReader::findBuffer()
return std::find_if(
m_upcomingNodeBuffers.begin(),
m_upcomingNodeBuffers.end(),
[this](const NodeBufferPair& p) { return !!p.second; });
[this](const NodeBufferPair& p)
{ return static_cast<bool>(p.second); });
}

bool EptReader::next()
Expand Down

0 comments on commit d6ca66b

Please sign in to comment.