Skip to content

Commit

Permalink
And min...
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub committed Jul 16, 2018
1 parent 3b2b9cd commit 248d87d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdal/Streamable.cpp
Expand Up @@ -191,7 +191,7 @@ void Streamable::execute(StreamPointTable& table,
table.clearSpatialReferences();
PointId idx = 0;
PointRef point(table, idx);
point_count_t pointLimit = std::min(count, table.capacity());
point_count_t pointLimit = (std::min)(count, table.capacity());

reader->startLogging();
// When we get false back from a reader, we're done, so set
Expand Down

0 comments on commit 248d87d

Please sign in to comment.