Skip to content

Commit

Permalink
Change PipelineManager::executeStream argument to be a StreamPointTab…
Browse files Browse the repository at this point in the history
…le rather than FixedPointTable. (#2182)
  • Loading branch information
connormanning authored and abellgithub committed Oct 3, 2018
1 parent eca09bf commit 8f1eee4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pdal/PipelineManager.cpp
Expand Up @@ -215,7 +215,7 @@ point_count_t PipelineManager::execute()
}


void PipelineManager::executeStream(FixedPointTable& table)
void PipelineManager::executeStream(StreamPointTable& table)
{
validateStageOptions();
Stage *s = getStage();
Expand Down
2 changes: 1 addition & 1 deletion pdal/PipelineManager.hpp
Expand Up @@ -118,7 +118,7 @@ class PDAL_DLL PipelineManager
QuickInfo preview() const;
void prepare() const;
point_count_t execute();
void executeStream(FixedPointTable& table);
void executeStream(StreamPointTable& table);
void validateStageOptions() const;
bool pipelineStreamable() const;

Expand Down

0 comments on commit 8f1eee4

Please sign in to comment.