Skip to content

Commit

Permalink
Merge commit '8be9a8c057b7939f37141bbb2a584fa7e4243c45' into working
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub committed Nov 17, 2020
2 parents 4b2e9d2 + 8be9a8c commit f0ace81
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
1 change: 1 addition & 0 deletions epf/Epf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ void Epf::run(const std::vector<std::string>& options)
}
m_pool.stop();
m_writer->stop();

writeMetadata(m_outputDir, m_grid,
m_srsFileInfo.valid() ? m_srsFileInfo.srs.getWKT() : "NONE", layout);
}
Expand Down
6 changes: 0 additions & 6 deletions epf/Writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,6 @@ namespace ept2
namespace epf
{

struct WriteData
{
VoxelKey key;
DataVecPtr data;
};

Writer::Writer(const std::string& directory, int numThreads) :
m_directory(directory), m_pool(numThreads), m_stop(false)
{
Expand Down
2 changes: 1 addition & 1 deletion epf/Writer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Writer
struct WriteData
{
VoxelKey key;
std::unique_ptr<std::vector<uint8_t>> data;
DataVecPtr data;
};

public:
Expand Down

0 comments on commit f0ace81

Please sign in to comment.