Skip to content

Commit

Permalink
Fix EPT number of points value when greater than 32 bits. (#3121)
Browse files Browse the repository at this point in the history
  • Loading branch information
connormanning committed Jun 9, 2020
1 parent 8155f2b commit 0425b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io/private/ept/EptInfo.cpp
Expand Up @@ -66,7 +66,7 @@ void EptInfo::initialize()
{
m_bounds = toBox3d(m_info.at("bounds"));
m_boundsConforming = toBox3d(m_info.at("boundsConforming"));
m_points = m_info.value("points", 0);
m_points = m_info.value<uint64_t>("points", 0);
m_span = m_info.at("span").get<uint64_t>();

auto iSrs = m_info.find("srs");
Expand Down

0 comments on commit 0425b51

Please sign in to comment.